Skip to content

Commit

Permalink
Merge pull request #276 from HelloVolla/dev
Browse files Browse the repository at this point in the history
Fixing small app icons for small scaling
  • Loading branch information
wurzer authored Dec 15, 2024
2 parents 0c48701 + 7fa2991 commit bda6199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AppGroup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Item {
property double desaturation: 1.0
property int groupIndex: 0
property int selectedGroupIndex: 1
property int columnCount: Screen.desktopAvailableWidth < 446 ? 4 : Screen.desktopAvailableWidth > 800 ? 8 : 5
property int columnCount: Screen.desktopAvailableWidth < 521 ? 4 : Screen.desktopAvailableWidth > 800 ? 8 : 5

property bool unreadMessages: false
property bool newCalls: false
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.2" android:versionCode="401" android:installLocation="auto">
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="3.0.3" android:versionCode="403" 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 bda6199

Please sign in to comment.