Closed
Bug 1860477
Opened 1 year ago
Closed 1 year ago
short cut Alt+Home to go to mail start page didn't work on nightly if focus is on threadpane
Categories
(Thunderbird :: Mail Window Front End, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1859927
People
(Reporter: walkerxk, Unassigned)
References
(Regression)
Details
(Keywords: regression)
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0
Steps to reproduce:
Press alt+home
Actual results:
Act like i press home, focus changed from last mail to first mail.
Expected results:
show mail start page
Comment 1•1 year ago
|
||
Confirmed, does not work. And Nothing in error console.
Comment 2•1 year ago
|
||
Works if focus is on the folder pane
Summary: short cut Alt+Home to go to mail start page didn't work on nightly → short cut Alt+Home to go to mail start page didn't work on nightly if focus is on threadpane
Comment 3•1 year ago
|
||
It was caused by this change in mail/base/content/widgets/tree-view.mjs:
case "keydown": {
- if (event.altKey || event[otherKeyName]) {
[...]
+ if (event[otherKeyName]) {
return;
}
This intercepts all [ALT] key combinations.
Keywords: regressionwindow-wanted
Regressed by: 1843486
Updated•1 year ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•