-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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 Ctrl+Tab shortcut to cycle databases in unlock dialog #8839
Merged
droidmonkey
merged 1 commit into
keepassxreboot:develop
from
ziegenberg:fix/db-open-dialog-crtl-tab
Dec 19, 2022
Merged
Fix Ctrl+Tab shortcut to cycle databases in unlock dialog #8839
droidmonkey
merged 1 commit into
keepassxreboot:develop
from
ziegenberg:fix/db-open-dialog-crtl-tab
Dec 19, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When in PR keepassxreboot#8168 the abbility to cycle through the databases in the unlock dialog was extended to include the `Ctrl+Tab / Ctrl+Shift+Tab` shortcuts, it mixed up the direction. At the moment `Ctrl+Tab` selects the previous database, when customarily it should select the next entry. This was my mistake. This commit changes the direction of cycling through databases in the unlock dialog with `Ctrl+Tab / Ctrl+Shift+Tab` fixing my original commit. Signed-off-by: Daniel Ziegenberg <[email protected]>
Interesting good catch! |
droidmonkey
approved these changes
Nov 25, 2022
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #8839 +/- ##
===========================================
- Coverage 64.45% 64.42% -0.03%
===========================================
Files 341 341
Lines 44247 44247
===========================================
- Hits 28516 28503 -13
- Misses 15731 15744 +13 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
droidmonkey
pushed a commit
that referenced
this pull request
Feb 18, 2023
Perlover
added a commit
to Perlover/keepassxc
that referenced
this pull request
May 18, 2023
Release 2.7.5 - Add menu option to allow screenshots [keepassxreboot#8841] - Add support for Botan 3 [keepassxreboot#9388] - Increase max TOTP step to 24 hours [keepassxreboot#9149] - Improve HTML export layout [keepassxreboot#8987] - Turn search reset off by default [keepassxreboot#9153] - Use QClipboard::clear() instead of setting blank text [keepassxreboot#9148] - Hide group column header choice when not in search [keepassxreboot#9171] - Improve look of KeePassXC logo and icons [keepassxreboot#9355] - Add keyboard shortcuts for app and database settings [keepassxreboot#9007] - Hide rename button from attachments preview panel [keepassxreboot#8842] - Linux: Set SingleMainWindow in .desktop file [keepassxreboot#7430] - Fix crash when search clears while creating new entry [keepassxreboot#9230] - Fix crash when using Windows Hello in a Remote Desktop session [keepassxreboot#9006] - Fix crash in Group Edit after enabling Browser Integration [keepassxreboot#8778] - Fix canceling quick unlock when it is unavailable [keepassxreboot#9034] - Set password input field font correctly [keepassxreboot#8732] - Greatly improve performance when rendering entry view [keepassxreboot#9398] - Fix various accessibility issues [keepassxreboot#9138] - Fix arrows size when expand/collapse a group [keepassxreboot#9096] - Select the clone instead of the original after cloning an entry [keepassxreboot#9070] - Fix bugs with preview widget [keepassxreboot#9170] - Fix status bar update when switching to other DB [keepassxreboot#9073] - Fix database settings spin box bug [keepassxreboot#9101] - Fix Ctrl+Tab shortcut to cycle databases in unlock dialog [keepassxreboot#8839] - Fix TOTP QR code maintaining square ratio [keepassxreboot#9027] - Fix Auto-Type configuration page on custom sequence selection [keepassxreboot#8752] - Fix unexpected behavior of `--lock` when KeePassXC is not running [keepassxreboot#8889] - Make open folder icon exempt from "Apply group icon to entry" [keepassxreboot#9205] - Allow setting default file open directory with env var [keepassxreboot#9192] - SSH Agent: Fix support for AES-256/GCM openssh keys [keepassxreboot#8968] - Browser: Fix Native Messaging script path with BSD OS's [keepassxreboot#8835] - MacOS: Fix text selection for Auto-Type clear field [keepassxreboot#9066] - MacOS: Don't rely on AppleInterfaceStyle for theme switching [keepassxreboot#8615] - Windows: Remove registry detection of desktop shortcut [keepassxreboot#9380]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
pr: backported
Pull request backported to previous release
pr: bugfix
Pull request that fixes a bug
ux
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When in PR #8168 the ability to cycle through the databases in the unlock dialogue was extended to include the
Ctrl+Tab / Ctrl+Shift+Tab
shortcuts, it mixed up the direction. At the momentCtrl+Tab
selects the previous database when customarily it should select the next entry. This was my mistake.This commit changes the direction of cycling through databases in the unlock dialogue with
Ctrl+Tab / Ctrl+Shift+Tab
fixing my original commit.Screenshots
None.
Testing strategy
I was able to compile and run the application.
Type of change