Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2022-04-26 14:21:36 +0300
committerJaime van Kessel <nallath@gmail.com>2022-04-26 14:21:36 +0300
commit3ecad03aee77261cfefb0bd69dc9a495361fe6dd (patch)
treedf33a284df13d51db6eb505d69bc8bfc2f3fb37c /resources/qml
parent0213a3833c83879ced7aedf1c629c906e955d449 (diff)
Use screenscale factor for maximumFlickVelocity
Not sure if it fixes it for all OSes, but the documentation says that this is a platform specific setting and it increases it by 1.25 for me. Since the velocity is in pixels/s, it makes sense to have it depend on the screenscale factor CURA-9182
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Settings/SettingView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml
index cf24997b12..cc8a04ad1e 100644
--- a/resources/qml/Settings/SettingView.qml
+++ b/resources/qml/Settings/SettingView.qml
@@ -178,7 +178,7 @@ Item
ListView
{
id: contents
- maximumFlickVelocity: 1000
+ maximumFlickVelocity: 1000 * screenScaleFactor
anchors
{
top: filterContainer.bottom