diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Modifiers.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Modifiers.qml index 11b87b545767133a708710df334f3e6abf25b9f7..95b08ebb7209ab052b11590d8193db9994200719 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Modifiers.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Modifiers.qml @@ -25,7 +25,7 @@ GroupBox { } CheckBox { id: ClipCheckBox; - text: "Clips"; + text: "Clip Content"; backendValue: backendValues.clip === undefined ? false : backendValues.clip; baseStateFlag: isBaseState; checkable: true; @@ -98,12 +98,13 @@ GroupBox { id: ScaleSpinBox; objectName: "ScaleSpinBox"; backendValue: backendValues.scale; + property var backendValueValue: backendValues.scale.value; minimumWidth: 60; minimum: 0.01 maximum: 10 singleStep: 0.1 baseStateFlag: isBaseState; - onBackendValueChanged: { + onBackendValueValueChanged: { ScaleSlider.value = backendValue.value * 10; } } @@ -112,7 +113,7 @@ GroupBox { minimum: 1; maximum: 100; singleStep: 1; - onValueChanged: { + onValueChanged: { backendValues.scale.value = value / 10; } } diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 372ea133f4813224a36d203d65d02f1c22bd95fc..decc1c0dfaf46bdd80adf46204770e0965d351c9 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -33,7 +33,7 @@ #include "debuggermanager.h" #include "stackframe.h" -#include "imports.h" // TextEditor::BaseTextMark +#include <texteditor/basetextmark.h> #include <QtCore/QDebug> #include <QtCore/QTextStream>