diff --git a/src/activities/menu/ConfigurationItem.qml b/src/activities/menu/ConfigurationItem.qml --- a/src/activities/menu/ConfigurationItem.qml +++ b/src/activities/menu/ConfigurationItem.qml @@ -1,3 +1,4 @@ + /* GCompris - ConfigurationItem.qml * * Copyright (C) 2014-2016 Johnny Jazeix @@ -289,6 +290,16 @@ updateValueWhileDragging: true value: baseFontSize onValueChanged: ApplicationSettings.baseFontSize = value; + MouseArea { // Removes scrolling when hovering sliders + anchors.fill: parent + onWheel: {} + onPressed: { + mouse.accepted = false + } + onReleased: { + mouse.accepted = false + } + } } GCText { id: baseFontSizeText @@ -327,6 +338,16 @@ updateValueWhileDragging: true value: fontLetterSpacing onValueChanged: ApplicationSettings.fontLetterSpacing = value + MouseArea { // Removes scrolling when hovering sliders + anchors.fill: parent + onWheel: {} + onPressed: { + mouse.accepted = false + } + onReleased: { + mouse.accepted = false + } + } } GCText { id: fontLetterSpacingText