Tracker: Fix Select shortcut again Fixes #19596

Change-Id: I0652ee11bb66e9b0ce9eaef8f9d7dc4f6975641e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/9320
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
John Scipione
2025-06-01 03:09:31 +00:00
committed by waddlesplash
parent e5a6a906f8
commit bcea01a853
+2 -2
View File
@@ -677,7 +677,7 @@ TShortcuts::ReverseOrderLabel()
BMenuItem*
TShortcuts::SelectItem()
{
return new BMenuItem(SelectLabel(), new BMessage(kShowSelectionWindow), 'A');
return new BMenuItem(SelectLabel(), new BMessage(kShowSelectionWindow), 'A', B_SHIFT_KEY);
}
@@ -691,7 +691,7 @@ TShortcuts::SelectLabel()
BMenuItem*
TShortcuts::SelectAllItem()
{
return new BMenuItem(SelectAllLabel(), new BMessage(B_SELECT_ALL), 'A', B_SHIFT_KEY);
return new BMenuItem(SelectAllLabel(), new BMessage(B_SELECT_ALL), 'A');
}