Add hotkey to toggle screen emphasis

Toggles which screen is emphasized when the screen sizing is set to
emphasize top or bottom. (Closes issue #1565)
This commit is contained in:
Nadia Holmquist Pedersen
2023-02-17 04:21:52 +01:00
parent 00edeb3c3c
commit 382155e6fe
5 changed files with 23 additions and 3 deletions

View File

@ -60,7 +60,8 @@ const int hk_general[] =
HK_FullscreenToggle,
HK_Lid,
HK_Mic,
HK_SwapScreens
HK_SwapScreens,
HK_SwapScreenEmphasis
};
const char* hk_general_labels[] =
@ -73,12 +74,13 @@ const char* hk_general_labels[] =
"Toggle fullscreen",
"Close/open lid",
"Microphone",
"Swap screens"
"Swap screens",
"Swap screen emphasis"
};
const int keypad_num = 12;
const int hk_addons_num = 2;
const int hk_general_num = 9;
const int hk_general_num = 10;
InputConfigDialog::InputConfigDialog(QWidget* parent) : QDialog(parent), ui(new Ui::InputConfigDialog)