Skip to content

Commit

Permalink
Do not hide manual checkbox in 80x25
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Nov 20, 2018
1 parent f9c6b4f commit 5089cc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions timezone/src/include/timezone/dialogs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def SetTimeDialog
VBox(
# radio button label (= how to setup time)
Left(RadioButton(Id(:manual), Opt(:notify), _("Manually"))),
VSpacing(0.5),
VSpacing(UI.TextMode ? 0 : 0.5),
HBox(
HSpacing(3),
VBox(
Expand All @@ -333,7 +333,7 @@ def SetTimeDialog
)
)
),
VSpacing(1),
VSpacing(UI.TextMode ? 0.5 : 1),
Left(
RadioButton(
Id(:ntp),
Expand All @@ -349,7 +349,7 @@ def SetTimeDialog
),
HWeight(1, VBox())
),
VSpacing(2)
VSpacing(UI.TextMode ? 0 : 2),
)

Wizard.OpenAcceptDialog
Expand Down

0 comments on commit 5089cc5

Please sign in to comment.