mirror of
https://github.com/wrwrabbit/Partisan-Telegram-Android.git
synced 2026-04-30 21:19:33 +00:00
Update to 7.0.0 (2061)
This commit is contained in:
parent
321b756367
commit
6e495f54b8
22 changed files with 253 additions and 123 deletions
|
|
@ -76,7 +76,7 @@ public class SharedConfig {
|
|||
|
||||
public static boolean saveToGallery;
|
||||
public static int mapPreviewType = 2;
|
||||
public static boolean chatBubbles = false;
|
||||
public static boolean chatBubbles = Build.VERSION.SDK_INT >= 30;
|
||||
public static boolean autoplayGifs = true;
|
||||
public static boolean autoplayVideo = true;
|
||||
public static boolean raiseToSpeak = true;
|
||||
|
|
@ -239,7 +239,7 @@ public class SharedConfig {
|
|||
preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
|
||||
saveToGallery = preferences.getBoolean("save_gallery", false);
|
||||
autoplayGifs = preferences.getBoolean("autoplay_gif", true);
|
||||
chatBubbles = preferences.getBoolean("chatBubbles", false);
|
||||
chatBubbles = preferences.getBoolean("chatBubbles", Build.VERSION.SDK_INT >= 30);
|
||||
autoplayVideo = preferences.getBoolean("autoplay_video", true);
|
||||
mapPreviewType = preferences.getInt("mapPreviewType", 2);
|
||||
raiseToSpeak = preferences.getBoolean("raise_to_speak", true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue