Fix vertical position of message dialog

On system with zoom settings the y position of the message dialog
was off.
This commit is contained in:
Floris Bos 2020-07-03 21:07:31 +02:00
parent 755d7dc6ab
commit 9a263f0211

View file

@ -11,7 +11,7 @@ import QtQuick.Controls.Material 2.2
Popup {
id: msgpopup
x: 75
y: parent.height/2-100
y: (parent.height-height)/2
width: parent.width-150
height: msgpopupbody.implicitHeight+150
padding: 0