Skip to content

Commit

Permalink
make the credentials input fields wider (bnc#864882)
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Feb 24, 2014
1 parent 285dbf6 commit c1a0f17
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/clients/inst_scc.rb
Expand Up @@ -157,14 +157,18 @@ def add_services(product_services, credentials)

def scc_credentials_dialog
VBox(
Frame(_("SUSE Customer Center Credentials"),
MarginBox(1, 0.5,
VBox(
InputField(Id(:email), _("&Email")),
VSpacing(0.5),
InputField(Id(:reg_code), _("Registration &Code"))
HBox(
HSpacing(Opt(:hstretch), 3),
Frame(_("SUSE Customer Center Credentials"),
MarginBox(1, 0.5,
VBox(
MinWidth(32, InputField(Id(:email), _("&Email"))),
VSpacing(0.5),
MinWidth(32, InputField(Id(:reg_code), _("Registration &Code")))
)
)
)
),
HSpacing(Opt(:hstretch), 3),
),
VSpacing(3),
PushButton(Id(:skip), _("&Skip Registration"))
Expand Down

0 comments on commit c1a0f17

Please sign in to comment.