Skip to content

Commit

Permalink
Merge branch 'dev' into start_preparation_group_start
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeikobelev committed Dec 30, 2019
2 parents 78e2ed6 + 05921cd commit ed919ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sportorg/gui/dialogs/timekeeping_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def init_ui(self):
self.start_layout.addRow(self.item_start_station)
self.item_start_cp = QRadioButton(_('Control point'))
self.item_start_cp_value = QSpinBox()
self.item_start_cp_value.setMaximum(999)
self.item_start_cp_value.setMaximumSize(60, 20)
self.start_layout.addRow(self.item_start_cp, self.item_start_cp_value)
self.item_start_gate = QRadioButton(_('Start gate'))
Expand All @@ -71,6 +72,7 @@ def init_ui(self):
self.finish_layout.addRow(self.item_finish_station)
self.item_finish_cp = QRadioButton(_('Control point'))
self.item_finish_cp_value = QSpinBox()
self.item_finish_cp_value.setMaximum(999)
self.item_finish_cp_value.setMinimum(-1)
self.item_finish_cp_value.setMaximumSize(60, 20)
self.finish_layout.addRow(self.item_finish_cp, self.item_finish_cp_value)
Expand Down

0 comments on commit ed919ce

Please sign in to comment.