-
-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Fix the tab order in dialogs #21395
Fix the tab order in dialogs #21395
Conversation
@thalieht |
<item row="3" column="0"> | ||
<widget class="QCheckBox" name="checkExportDirFin"> | ||
<property name="text"> | ||
<string>Copy .torrent files for finished downloads to:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="3" column="1"> | ||
<widget class="FileSystemPathLineEdit" name="textExportDirFin" native="true"/> |
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.
I moved this here manually because tabstop wasn't enough to fix the order.
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.
Untested. Formally approved so that you don't have to wait for my approval later.
@thalieht |
Torrent options
Torrent creator
Preferences
In "torrent creator" the
tabChangesFocus
property is not set for thetextEdit
fields so tab is trapped in there AFAIK. Is there any reason not to set it?The options dialog is a mess and i don't know how to fix it. e.g. inBehavior
the second tabstop in the list of the .ui file is the language and yet it takes 15 tabs to get there.Figured it out.
Closes #21387.