mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 10:44:46 +00:00
LanguageSidebar: simplify code
This commit is contained in:
parent
8444a9563e
commit
c60252d3ce
2 changed files with 1 additions and 12 deletions
|
@ -37,17 +37,6 @@ import QtQuick.Controls 2.0
|
||||||
Drawer {
|
Drawer {
|
||||||
id: sideBar
|
id: sideBar
|
||||||
|
|
||||||
// @TODO: Qt 5.10 introduces `opened` built-in for Drawer
|
|
||||||
property bool isOpened: false
|
|
||||||
|
|
||||||
onClosed: {
|
|
||||||
isOpened = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
onOpened: {
|
|
||||||
isOpened = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
width: 240
|
width: 240
|
||||||
height: parent.height - (persistentSettings.customDecorations ? 50 : 0)
|
height: parent.height - (persistentSettings.customDecorations ? 50 : 0)
|
||||||
y: titleBar.height
|
y: titleBar.height
|
||||||
|
|
2
main.qml
2
main.qml
|
@ -1948,7 +1948,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleLanguageView(){
|
function toggleLanguageView(){
|
||||||
languageSidebar.isOpened ? languageSidebar.close() : languageSidebar.open();
|
languageSidebar.visible ? languageSidebar.close() : languageSidebar.open();
|
||||||
resetLanguageFields()
|
resetLanguageFields()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue