mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:33:31 +02:00
Silly bug
This commit is contained in:
parent
81ab5ac81c
commit
df58065e75
1 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,8 @@ Item {
|
|||
// able to click on a button/mouseArea underneath the popup/section.
|
||||
MouseArea {
|
||||
x: 0;
|
||||
y: root.isCurrentlyFullScreen ? root.parentAppTitleBarHeight : 0;
|
||||
y: root.isCurrentlyFullScreen ? 0 : root.parentAppTitleBarHeight;
|
||||
width: parent.width;
|
||||
height: root.isCurrentlyFullScreen ? parent.height : parent.height - root.parentAppTitleBarHeight - root.parentAppNavBarHeight;
|
||||
propagateComposedEvents: false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue