Skip to content

Commit

Permalink
Merge 825f330 into dc214c9
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Sep 17, 2019
2 parents dc214c9 + 825f330 commit d3a08d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/y2network/widgets/boot_protocol.rb
Expand Up @@ -256,7 +256,7 @@ def validate
hname = Yast::UI.QueryWidget(:bootproto_hostname, :Value)
if !hname.empty?
if !Yast::Hostname.CheckFQ(hname)
Popup.Error(_("Invalid hostname."))
Yast::Popup.Error(_("Invalid hostname."))
Yast::UI.SetFocus(:bootproto_hostname)
return false
end
Expand Down
5 changes: 4 additions & 1 deletion src/lib/y2network/widgets/udev_rules.rb
Expand Up @@ -36,7 +36,10 @@ def contents
_("Udev Rules"),
HBox(
InputField(Id(:udev_rules_name), Opt(:hstretch, :disabled), _("Device Name"), ""),
PushButton(Id(:udev_rules_change), _("Change"))
VBox(
VSpacing(),
PushButton(Id(:udev_rules_change), _("Change"))
)
)
)
end
Expand Down

0 comments on commit d3a08d9

Please sign in to comment.