1 files changed, 16 insertions, 0 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 7db9d041..f575e133 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -68,6 +68,22 @@ Page {
}
+ Component {
+ id: quickSwitcherComponent
+
+ QuickSwitcher {
+ id: quickSwitcher
+ }
+ }
+
+ Shortcut {
+ sequence: "Ctrl+L"
+ onActivated: {
+ var quickSwitch = quickSwitcherComponent.createObject(timelineRoot);
+ quickSwitch.open();
+ }
+ }
+
Menu {
id: messageContextMenu
|