diff --git a/TODO.md b/TODO.md index 676d5b69..b4e9aa3b 100644 --- a/TODO.md +++ b/TODO.md @@ -11,7 +11,6 @@ - When qml syntax highlighting supports ES6 string interpolation, use them - Fixes - - alt+n - Icons on KDE - Backspace bug - Add missing shortcuts to config file diff --git a/src/qml/SidePane/SidePane.qml b/src/qml/SidePane/SidePane.qml index 04ba1d59..0fc0120b 100644 --- a/src/qml/SidePane/SidePane.qml +++ b/src/qml/SidePane/SidePane.qml @@ -11,9 +11,9 @@ Rectangle { color: theme.sidePane.background - property bool hasFocus: toolbar.filterField.activeFocus + property bool hasFocus: toolBar.filterField.activeFocus property alias sidePaneList: sidePaneList - property alias toolbar: toolbar + property alias toolBar: toolBar property real autoWidthRatio: theme.sidePane.autoWidthRatio property bool manuallyResizing: false @@ -28,7 +28,7 @@ Rectangle { } } - onFocusChanged: if (focus) toolbar.filterField.forceActiveFocus() + onFocusChanged: if (focus) toolBar.filterField.forceActiveFocus() onManualWidthChanged: { window.uiState.sidePaneManualWidth = manualWidth @@ -105,7 +105,7 @@ Rectangle { } SidePaneToolBar { - id: toolbar + id: toolBar } } } diff --git a/src/qml/SidePane/SidePaneList.qml b/src/qml/SidePane/SidePaneList.qml index 00e92107..3148c0ad 100644 --- a/src/qml/SidePane/SidePaneList.qml +++ b/src/qml/SidePane/SidePaneList.qml @@ -9,7 +9,7 @@ HListView { readonly property var originSource: window.sidePaneModelSource readonly property var collapseAccounts: window.uiState.collapseAccounts - readonly property string filter: toolbar.roomFilter + readonly property string filter: toolBar.roomFilter readonly property alias activateLimiter: activateLimiter onOriginSourceChanged: filterLimiter.restart()