Remove support for linear gif flow.

This commit is contained in:
Alex Hart
2021-04-19 18:34:26 -03:00
committed by Greyson Parrelli
parent a844a6b6c1
commit 86f2cf0ac4
8 changed files with 11 additions and 177 deletions

View File

@@ -502,14 +502,6 @@ public class TextSecurePreferences {
return getBooleanPreference(context, LINK_PREVIEWS, true);
}
public static boolean isGifSearchInGridLayout(Context context) {
return getBooleanPreference(context, GIF_GRID_LAYOUT, false);
}
public static void setIsGifSearchInGridLayout(Context context, boolean isGrid) {
setBooleanPreference(context, GIF_GRID_LAYOUT, isGrid);
}
public static int getNotificationPriority(Context context) {
return Integer.valueOf(getStringPreference(context, NOTIFICATION_PRIORITY_PREF, String.valueOf(NotificationCompat.PRIORITY_HIGH)));
}