mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 12:24:01 +02:00
fixes
This commit is contained in:
parent
050df2ac2a
commit
3c2626894c
1 changed files with 10 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
|
||||
import Hifi 1.0 as Hifi
|
||||
import QtQuick 2.5
|
||||
import "../common" as HifiCommerceCommon
|
||||
import "../../../styles-uit"
|
||||
import "../../../controls-uit" as HifiControlsUit
|
||||
|
||||
|
@ -34,6 +35,14 @@ Item {
|
|||
visible: false;
|
||||
anchors.fill: parent;
|
||||
}
|
||||
// This object is always used in a popup.
|
||||
// This MouseArea is used to prevent a user from being
|
||||
// able to click on a button/mouseArea underneath the popup.
|
||||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
//
|
||||
// TITLE BAR START
|
||||
|
@ -207,7 +216,7 @@ Item {
|
|||
// "What's This?" link
|
||||
RalewayRegular {
|
||||
id: whatsThisLink;
|
||||
text: '<font color="#FFFFFF"><a href="#">What's this?</a></font>';
|
||||
text: '<font color="#FFFFFF"><a href="#">What\'s this?</a></font>';
|
||||
// Anchors
|
||||
anchors.bottom: parent.bottom;
|
||||
anchors.bottomMargin: 24;
|
||||
|
|
Loading…
Reference in a new issue