mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
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:
parent
755d7dc6ab
commit
9a263f0211
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue