aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquicktextinput_p_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquicktextinput_p_p.h')
-rw-r--r--src/quick/items/qquicktextinput_p_p.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/quick/items/qquicktextinput_p_p.h b/src/quick/items/qquicktextinput_p_p.h
index 01d90f6b10..2360bf99eb 100644
--- a/src/quick/items/qquicktextinput_p_p.h
+++ b/src/quick/items/qquicktextinput_p_p.h
@@ -107,6 +107,7 @@ public:
, canRedo(false)
, hAlignImplicit(true)
, selectPressed(false)
+ , hadSelectionOnMousePress(false)
, textLayoutDirty(true)
, persistentSelection(false)
, hasImState(false)
@@ -124,6 +125,7 @@ public:
, inLayout(false)
, requireImplicitWidth(false)
, overwriteMode(false)
+ , containsUnscalableGlyphs(false)
#if QT_VERSION < QT_VERSION_CHECK(7, 0, 0)
, selectByTouchDrag(false)
#endif
@@ -259,6 +261,7 @@ public:
bool canRedo:1;
bool hAlignImplicit:1;
bool selectPressed:1;
+ bool hadSelectionOnMousePress:1;
bool textLayoutDirty:1;
bool persistentSelection:1;
bool hasImState : 1;
@@ -276,6 +279,7 @@ public:
bool inLayout:1;
bool requireImplicitWidth:1;
bool overwriteMode:1;
+ bool containsUnscalableGlyphs:1;
#if QT_VERSION < QT_VERSION_CHECK(7, 0, 0)
bool selectByTouchDrag:1;
#endif