Skip to content

Commit

Permalink
Merge pull request #130 from HelloVolla/dev
Browse files Browse the repository at this point in the history
Fix for default settings
  • Loading branch information
wurzer authored Mar 19, 2023
2 parents dd25b30 + f9f3e2e commit c6be4ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Settings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1292,8 +1292,8 @@ Page {
onRunningChanged: {
console.log("Settings | Running changed to " + running)
if (!running) {
blurLabel.visible = !blurLabel.visible
blurSlider.visible = !blurSlider.visible
blurLabel.visible = designSettingsItemColumn.menuState
blurSlider.visible = designSettingsItemColumn.menuState
}
}
}
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="2.1.18" android:versionCode="263" android:installLocation="auto">
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.1.19" android:versionCode="264" 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
2 changes: 1 addition & 1 deletion main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ ApplicationWindow {
property bool signalIsActivated: false
property bool useColoredIcons: false
property bool showAppsAtStartup: false
property bool useHapticMenus: false
property bool useHapticMenus: true
property double blurEffect: 60.0
property double lastContactsCheck: 0.0

Expand Down

0 comments on commit c6be4ea

Please sign in to comment.