mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +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 Hifi 1.0 as Hifi
|
||||||
import QtQuick 2.5
|
import QtQuick 2.5
|
||||||
|
import "../common" as HifiCommerceCommon
|
||||||
import "../../../styles-uit"
|
import "../../../styles-uit"
|
||||||
import "../../../controls-uit" as HifiControlsUit
|
import "../../../controls-uit" as HifiControlsUit
|
||||||
|
|
||||||
|
@ -34,6 +35,14 @@ Item {
|
||||||
visible: false;
|
visible: false;
|
||||||
anchors.fill: parent;
|
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
|
// TITLE BAR START
|
||||||
|
@ -207,7 +216,7 @@ Item {
|
||||||
// "What's This?" link
|
// "What's This?" link
|
||||||
RalewayRegular {
|
RalewayRegular {
|
||||||
id: whatsThisLink;
|
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
|
||||||
anchors.bottom: parent.bottom;
|
anchors.bottom: parent.bottom;
|
||||||
anchors.bottomMargin: 24;
|
anchors.bottomMargin: 24;
|
||||||
|
|
Loading…
Reference in a new issue