From 2ebffd3eaf4e2660dfe6c6fc5c8328c682fae351 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Wed, 27 Nov 2019 15:21:48 +0100 Subject: [PATCH] QmlDesigner: Fix RealSpinBoxInput Fixes RealSpinBoxInput scroll behavior. Without this change the RealSpinBox would block the ScrollView from getting mouse wheel events, which means whenever the mouse is hovering over a RealSpinBox the ScrollView can't be scrolled via the mouse wheel. Change-Id: I4533e36700fc2652a9c246a0e30613c71258edaf Reviewed-by: Thomas Hartmann --- .../imports/StudioControls/RealSpinBoxInput.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml index 72a713c2820..98c592f1126 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml @@ -193,6 +193,7 @@ TextInput { PropertyChanges { target: mouseArea cursorShape: Qt.PointingHandCursor + enabled: false } }, State {