0
0
mirror of https://github.com/ponces/treble_aosp.git synced 2025-05-08 15:27:35 +00:00
Files
treble_aosp/patches/personal/platform_packages_apps_Launcher3/0002-Disable-QSB-on-first-screen-by-default.patch

27 lines
1.1 KiB
Diff

From 05a32c6c193ca8c7f7b9d508b284e6235a74a10b Mon Sep 17 00:00:00 2001
From: Arne Coucheron <arco68@gmail.com>
Date: Wed, 28 Jun 2017 02:20:46 +0200
Subject: [PATCH 2/3] Disable QSB on first screen by default
Change-Id: I24f1682cbad10610f04f7b8ada238b43addd23da
---
src_build_config/com/android/launcher3/BuildConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src_build_config/com/android/launcher3/BuildConfig.java b/src_build_config/com/android/launcher3/BuildConfig.java
index 6d4f56d655..2630ec130f 100644
--- a/src_build_config/com/android/launcher3/BuildConfig.java
+++ b/src_build_config/com/android/launcher3/BuildConfig.java
@@ -24,7 +24,7 @@ public final class BuildConfig {
* Flag to state if the QSB is on the first screen and placed on the top,
* this can be overwritten in other launchers with a different value, if needed.
*/
- public static final boolean QSB_ON_FIRST_SCREEN = true;
+ public static final boolean QSB_ON_FIRST_SCREEN = false;
/**
* Flag to state if the widget on the top of the first screen should be shown.
--
2.34.1