aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2014-04-14 11:47:46 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2014-04-14 15:37:03 +0200
commita513347086b1d555b36929fc26099dfecb559ddb (patch)
tree2dce6c040805f4a0386199dda9d666c3e0276239 /share
parent6a966586272acd68f2112e27821356d39f52046b (diff)
QmlDesigner.PropertyEditor: No transactions based on focus
This is to fragile and allows many opportunities for serious bugs. Change-Id: I2e49c37db4c1dd2c55000013d8ec7e0978d1ef89 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com> Reviewed-by: Marco Bubke <marco.bubke@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml
index e241b4c807..dfc408f5e2 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml
@@ -68,14 +68,6 @@ Controls.ComboBox {
}
}
- onFocusChanged: {
- if (focus) {
- transaction.start();
- } else {
- transaction.end();
- }
- }
-
style: CustomComboBoxStyle {
textColor: comboBox.textColor
}