diff --git a/containment/package/contents/config/main.xml b/containment/package/contents/config/main.xml --- a/containment/package/contents/config/main.xml +++ b/containment/package/contents/config/main.xml @@ -21,6 +21,9 @@ 10 + + 20 + 64 diff --git a/plasmoid/package/contents/config/main.xml b/plasmoid/package/contents/config/main.xml --- a/plasmoid/package/contents/config/main.xml +++ b/plasmoid/package/contents/config/main.xml @@ -37,6 +37,9 @@ 14 + + 20 + 48 diff --git a/plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml b/plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml --- a/plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml +++ b/plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml @@ -51,7 +51,8 @@ PropertyAnimation { target: wrapper property: (icList.orientation == Qt.Vertical) ? "tempScaleWidth" : "tempScaleHeight" - to: taskItem.containsMouse ? 1+2*(taskItem.parabolic.factor.maxZoom-1) : 1 + (0.65 * (taskItem.parabolic.factor.maxZoom-1)) + //TODO Add a slider in the AppearanceConfig to adjust the launcherBounceLevel value + to: taskItem.containsMouse ? 1+2*(plasmoid.configuration.launcherBounceLevel/10 -1) : 1 + (0.65 * (plasmoid.configuration.launcherBounceLevel /10-1)) duration: launcherAnimation.speed easing.type: Easing.OutQuad } diff --git a/shell/package/contents/configuration/pages/AppearanceConfig.qml b/shell/package/contents/configuration/pages/AppearanceConfig.qml --- a/shell/package/contents/configuration/pages/AppearanceConfig.qml +++ b/shell/package/contents/configuration/pages/AppearanceConfig.qml @@ -280,7 +280,7 @@ Layout.fillWidth: true value: Number(1 + plasmoid.configuration.zoomLevel / 20).toFixed(2) from: 1 - to: 2 + to: 5 stepSize: 0.05 wheelEnabled: false