mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Settings: add user option to toggle custom decorations
Some people prefer those
This commit is contained in:
parent
eff8bdedc4
commit
456bf04db6
1 changed files with 11 additions and 0 deletions
|
@ -334,6 +334,17 @@ Rectangle {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
CheckBox {
|
||||||
|
id: customDecorationsCheckBox
|
||||||
|
checked: persistentSettings.customDecorations
|
||||||
|
onClicked: persistentSettings.customDecorations = checked
|
||||||
|
text: qsTr("Custom decorations") + translationManager.emptyString
|
||||||
|
checkedIcon: "../images/checkedVioletIcon.png"
|
||||||
|
uncheckedIcon: "../images/uncheckedIcon.png"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Daemon console
|
// Daemon console
|
||||||
|
|
Loading…
Reference in a new issue