-
Notifications
You must be signed in to change notification settings - Fork 11
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
Ctrl-a (Select All) shortcut key no longer working in version 5.8 #160
Comments
I have the same problem with TB 102.7.2 and TB 102.8.0 on macOS Big Sur and Windows 11. |
Just noticed the same here on my side after updating to the latest version as of today. Disabling the add-on fixes this behaviour! |
I will test that today (was at the hospital yesterday) - I am sure it's easy to fix! |
Thanks and hope you're well, Axel 👍 |
I have done a few code checks without success. Done the following steps with the same problem still manifesting. if (!main.isKeyListener) {
win.quickFilters_keyListener = (event) => { main.windowKeyPress(event,'down'); }
win.addEventListener("keypress", win.quickFilters_keyListener, {capture:false, passive: true})
win.quickFilters.isKeyListener = true;
} the only (main) difference to the old code in quickFilters 5.6 (not 5.7!) is that I am passing the function |
Checked and with basically the same code in 5.7.1 the issue doesn't happen. Old code: quickFilters.addKeyListener = function(win) {
const prefs = quickFilters.Preferences;
let isRunFolderKey = prefs.isShortcut("folder"),
isSelectedMailsKey = prefs.isShortcut("mails");
if (isRunFolderKey || isSelectedMailsKey) {
// check main instance
let main = win.quickFilters;
if (!main.isKeyListener) {
win.quickFilters_keyListener = (event) => { main.windowKeyPress(event,'down'); }
win.addEventListener("keypress", win.quickFilters_keyListener, true)
win.quickFilters.isKeyListener = true;
}
}
}; this also uses Not quite sure what else (that's relevant) may have changed (just yet) ... mysterious.. |
I think I found the problem after couple hours of looking at the wrong places. I found there was actually an error thrown in error console (should have looked there 1st, I usually do). the wrapped interestingly this file is (currently) removed in the latest code branch (which is going to land in Tb115 later this year). So there will be a lot of rewriting for that version ... not sure what is going to replace command handlers in the new version, but I will add some patches for #138 (beta version) later. New version for testing: to install this version as always, first download the zip file. Then drag this zip file into Thunderbird Add-ons Manager (or install from file via the tools menu). Do not extract contents as zip = xpi. same internal file structure! |
Thank you. Using TB 1028.0 on macOS Big Sur, QF 5.8.1pre7.zip restored the select-all function. |
QuickFilters.Pro version 5.8.1pre7 |
Fixed in 5.8.1 published on 18/02/2023 |
The shortcut key ctrl-a (select all) has stopped working since the new update 5.8.
Previously you could click on a message and press ctrl-a to select all the messages, this no longer works. The select all messages from the menu have also stopped working. Edit -> Select -> All.
This behaviour seems to be confirmed by 2 reviews on the add on homepage:
https://addons.thunderbird.net/en-us/thunderbird/addon/quickfilters/reviews/1171143/
https://addons.thunderbird.net/en-us/thunderbird/addon/quickfilters/reviews/1171141/
Disabling this add on restores the functionality.
Thunderbird 102.7.1
Linux Pop!_OS 22.04 LTS
The text was updated successfully, but these errors were encountered: