mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 14:17:25 -04:00
TitleBar: Remove lock icon on essentials display
The lock functionality is shown on the initial welcome screen
and the WizardHome. Remove the lock icon until the wallet is
actually open, similar to the "Close this wallet" logic.
Fixes 346913f: ("SettingsWallet: lock wallet on demand")
This commit is contained in:
@@ -64,11 +64,13 @@ Rectangle {
|
|||||||
State {
|
State {
|
||||||
name: "default";
|
name: "default";
|
||||||
PropertyChanges { target: btnCloseWallet; visible: true}
|
PropertyChanges { target: btnCloseWallet; visible: true}
|
||||||
|
PropertyChanges { target: btnLockWallet; visible: true}
|
||||||
PropertyChanges { target: btnLanguageToggle; visible: true}
|
PropertyChanges { target: btnLanguageToggle; visible: true}
|
||||||
}, State {
|
}, State {
|
||||||
// show only theme switcher and window controls
|
// show only theme switcher and window controls
|
||||||
name: "essentials";
|
name: "essentials";
|
||||||
PropertyChanges { target: btnCloseWallet; visible: false}
|
PropertyChanges { target: btnCloseWallet; visible: false}
|
||||||
|
PropertyChanges { target: btnLockWallet; visible: false}
|
||||||
PropertyChanges { target: btnLanguageToggle; visible: false}
|
PropertyChanges { target: btnLanguageToggle; visible: false}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user