forked from nitanmarcel/cinny-click-packaging
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path0009-settings.patch
More file actions
24 lines (20 loc) · 609 Bytes
/
0009-settings.patch
File metadata and controls
24 lines (20 loc) · 609 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/src/app/state/settings.ts b/src/app/state/settings.ts
index 9d97919..1b4b913 100644
--- a/src/app/state/settings.ts
+++ b/src/app/state/settings.ts
@@ -35,6 +35,9 @@ export interface Settings {
isNotificationSounds: boolean;
developerTools: boolean;
+
+ enableBottomGesture: boolean;
+ displayBottomGestureHint: boolean;
}
const defaultSettings: Settings = {
@@ -64,6 +67,9 @@ const defaultSettings: Settings = {
isNotificationSounds: false,
developerTools: false,
+
+ enableBottomGesture: true,
+ displayBottomGestureHint: true,
};
export const getSettings = () => {