This commit is contained in:
howard-stearns 2018-02-23 14:54:03 -08:00
parent 050df2ac2a
commit 3c2626894c

View file

@ -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;