From f866d3cf8bc5383ee7e44998ce029aab5d965dcd Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Sat, 12 Jun 2021 20:40:31 +0200 Subject: [PATCH] History: advanced options hidden when transaction count = 0 --- pages/History.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/History.qml b/pages/History.qml index 8711aca7..f6679430 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1363,6 +1363,7 @@ Rectangle { Layout.bottomMargin: 20 Layout.leftMargin: sideMargin Layout.rightMargin: sideMargin + visible: root.txCount > 0 checked: persistentSettings.historyShowAdvanced onClicked: persistentSettings.historyShowAdvanced = !persistentSettings.historyShowAdvanced text: qsTr("Advanced options") + translationManager.emptyString