-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSH Importer: Width fix to avoid cut of CheckBoxFrame Label #391
Conversation
HBox( | ||
HSpacing(2), | ||
Left(copy_config_widget) | ||
MinWidth(50, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obviously, the right fix is to discover why the cut is happening. But, once we are already in the business of workarounds... why don't make it i18n aware with something like...?
label = _("I would like to import SSH keys from a previous installation")
MinWidth(label.length,
...
b6b9e59
to
444f245
Compare
No version increase? |
HBox( | ||
HSpacing(2), | ||
Left(copy_config_widget) | ||
MinWidth(label.length, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add a comment explaining why this MinWidth is there
451b1ae
to
6d88bf3
Compare
LGTM |
4904802
to
a2fe227
Compare
LGTM |
By some reason the Label of the CheckBoxFrame is being cut. Now width is forced, but could be nice if some UI expert reviewed it as i'm not sure if could be some problem with long texts (translations).
Previously
With MinWidth