Skip to content

Commit

Permalink
Merge 5210426 into 653de08
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Nov 20, 2018
2 parents 653de08 + 5210426 commit 5ace519
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 15 deletions.
7 changes: 7 additions & 0 deletions package/yast2-ntp-client.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Nov 14 21:32:26 UTC 2018 - knut.andersse@suse.com

- Aligned "Synchronize Now" button and "NTP Server Address" box not
breaking previous fix (bnc#893065, bsc#1039985)
- 4.0.16

-------------------------------------------------------------------
Thu Nov 8 19:20:26 UTC 2018 - knut.andersse@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-ntp-client.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-ntp-client
Version: 4.0.15
Version: 4.0.16
Release: 0
Summary: YaST2 - NTP Client Configuration
License: GPL-2.0+
Expand Down
36 changes: 22 additions & 14 deletions src/clients/ntp-client_proposal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -210,21 +210,33 @@ def ui_init(rp, first_time)
rp = deep_copy(rp)
cont = VBox(
VSpacing(0.5),
HBox(
HSpacing(3),
HWeight(
1,
Left(
ComboBox(
Id(:ntp_address),
Opt(:editable, :hstretch),
# combo box label
_("&NTP Server Address")
)
)
),
HWeight(
1,
VBox(
UI.TextMode ? VSpacing(1) : Label(""),
# push button label
Left(PushButton(Id(:ntp_now), _("S&ynchronize now")))
)
)
),
HBox(
HSpacing(3),
HWeight(
1,
VBox(
VSpacing(0.5),
Left(
ComboBox(
Id(:ntp_address),
Opt(:editable, :hstretch),
# combo box label
_("&NTP Server Address")
)
),
VSpacing(0.3),
HBox(
HSpacing(0.5),
# check box label
Expand All @@ -248,10 +260,6 @@ def ui_init(rp, first_time)
HWeight(
1,
VBox(
Label(""),
# push button label
Left(PushButton(Id(:ntp_now), _("S&ynchronize now"))),
VSpacing(0.3),
# push button label
# bnc#449615: only simple config for inst-sys
Stage.initial ? Label("") : Left(PushButton(Id(:ntp_configure), _("&Configure..."))),
Expand Down

0 comments on commit 5ace519

Please sign in to comment.