From 5dfe700880d91ca9181c17de34120d0c4689f6dd Mon Sep 17 00:00:00 2001 From: miruka Date: Tue, 19 Jan 2021 12:16:05 -0400 Subject: [PATCH] Fix toggle compact keybind not working immediatly --- src/gui/UI.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/UI.qml b/src/gui/UI.qml index 8632ffb5..89c794cb 100644 --- a/src/gui/UI.qml +++ b/src/gui/UI.qml @@ -74,7 +74,7 @@ Item { sequences: window.settings.Keys.compact onActivated: { window.settings.General.compact = ! window.settings.General.compact - windowsaveSettings() + window.saveSettings() } }