mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-11 01:39:26 -05:00
booru: more sexy
This commit is contained in:
@@ -28,6 +28,14 @@ Rectangle {
|
||||
}
|
||||
event.accepted = true;
|
||||
}
|
||||
if (event.modifiers === Qt.ControlModifier) {
|
||||
if (event.key === Qt.Key_Tab) {
|
||||
root.currentTab = (root.currentTab + 1) % root.tabButtonList.length;
|
||||
} else if (event.key === Qt.Key_Backtab) {
|
||||
root.currentTab = (root.currentTab - 1 + root.tabButtonList.length) % root.tabButtonList.length;
|
||||
}
|
||||
event.accepted = true;
|
||||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
|
||||
Reference in New Issue
Block a user