From 626f464c5379d79cc74dbbaefd63e86cc9ae25d7 Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 15 Aug 2019 11:31:24 -0400 Subject: [PATCH] Save/load the sidepane filter text in ui state --- src/qml/SidePane/PaneToolBar.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/SidePane/PaneToolBar.qml b/src/qml/SidePane/PaneToolBar.qml index b81f53b0..417f1d89 100644 --- a/src/qml/SidePane/PaneToolBar.qml +++ b/src/qml/SidePane/PaneToolBar.qml @@ -37,7 +37,8 @@ HRowLayout { Connections { target: window - // Keep multiple instances of PaneToolBar in sync + // Keep multiple instances of PaneToolBar in sync. + // This also sets the text on startup. onUiStateChanged: filterField.text = uiState.sidePaneFilter }