Skip to content

Commit

Permalink
Merge pull request #274 from HelloVolla/dev
Browse files Browse the repository at this point in the history
Further fix for quick menu
  • Loading branch information
wurzer authored Dec 12, 2024
2 parents ee7feaf + d8ce437 commit 0c48701
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Springboard.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ LauncherPage {
if (mouseX > rbPoint.x && mouseX < rbPoint.x + rootMenuButton.width
&& mouseY > touchY && mouseY < touchY + touchHeight) {
console.log("Springboard | enable menu")
console.log("Springboard | width" + parent.width, shortcutMenu.width, shortcutColumn.width)
console.log("Springboard | width " + parent.width, shortcutMenu.width, shortcutColumn.width)
//shortcutBackground.visible = true
shortcutMenu.height = shortcutColumn.height + mainView.innerSpacing * 1.5
shortcutBackground.width = roundedShortcutMenu ? shortcutMenu.width - mainView.innerSpacing * 4 : shortcutMenu.width
Expand Down Expand Up @@ -1306,7 +1306,7 @@ LauncherPage {

function createShortcuts(shortcuts) {
var leftDistance = mainView.innerSpacing * 4
var componentWidth = Screen.width > 363 ? Screen.width * 0.6 - leftDistance : Screen.width - leftDistance
var componentWidth = Screen.width > 520 ? Screen.width * 0.6 - leftDistance : Screen.width - leftDistance
console.log("Springboard | Width " + componentWidth)
for (var i = 0; i < shortcuts.length; i++) {
if (shortcuts[i]["activated"]) {
Expand Down Expand Up @@ -1428,7 +1428,7 @@ LauncherPage {

Column {
id: shortcutColumn
visible: true // shortcutBackground.visible
visible: true
opacity: 0.0
width: parent.width - mainView.innerSpacing * 2
topPadding: mainView.innerSpacing * 1.5
Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="3.0.1" android:versionCode="401" android:installLocation="auto">
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="3.0.2" android:versionCode="401" android:installLocation="auto">
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="29"/>

<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Expand Down

0 comments on commit 0c48701

Please sign in to comment.