forked from Public/monero-gui
Modify password dialog and move customdecorations function out of main.qml
This commit is contained in:
24
main.qml
24
main.qml
@@ -40,6 +40,7 @@ import moneroComponents.NetworkType 1.0
|
||||
|
||||
import "components"
|
||||
import "wizard"
|
||||
import "js/Windows.js" as Windows
|
||||
|
||||
ApplicationWindow {
|
||||
id: appWindow
|
||||
@@ -933,30 +934,9 @@ ApplicationWindow {
|
||||
// width: screenWidth //rightPanelExpanded ? 1269 : 1269 - 300
|
||||
// height: 900 //300//maxWindowHeight;
|
||||
color: "#FFFFFF"
|
||||
flags: persistentSettings.customDecorations ? (Qt.FramelessWindowHint | Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint) : (Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint)
|
||||
flags: persistentSettings.customDecorations ? Windows.flagsCustomDecorations : Windows.flags
|
||||
onWidthChanged: x -= 0
|
||||
|
||||
function setCustomWindowDecorations(custom) {
|
||||
var x = appWindow.x
|
||||
var y = appWindow.y
|
||||
if (x < 0)
|
||||
x = 0
|
||||
if (y < 0)
|
||||
y = 0
|
||||
persistentSettings.customDecorations = custom;
|
||||
titleBar.visible = custom; // hides custom titlebar based on customDecorations
|
||||
|
||||
if (custom)
|
||||
appWindow.flags = Qt.FramelessWindowHint | Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint;
|
||||
else
|
||||
appWindow.flags = Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint;
|
||||
|
||||
appWindow.hide()
|
||||
appWindow.x = x
|
||||
appWindow.y = y
|
||||
appWindow.show()
|
||||
}
|
||||
|
||||
Component.onCompleted: {
|
||||
x = (Screen.width - width) / 2
|
||||
y = (Screen.height - maxWindowHeight) / 2
|
||||
|
||||
Reference in New Issue
Block a user