Skip to content

Commit

Permalink
move network button fully right
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Dec 17, 2020
1 parent 7765ba5 commit 6470464
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/lib/registration/ui/base_system_registration_dialog.rb
Expand Up @@ -175,16 +175,18 @@ def back_handler
# content for the main registration dialog
# @return [Yast::Term] UI term
def content
HBox(
HStretch(),
VBox(
network_button,
VStretch(),
Left(product_details_widgets),
Left(registration_widgets),
VStretch()
),
HStretch()
VBox(
network_button,
HBox(
HStretch(),
VBox(
VStretch(),
Left(product_details_widgets),
Left(registration_widgets),
VStretch()
),
HStretch()
)
)
end

Expand Down

0 comments on commit 6470464

Please sign in to comment.