mirror of
				https://github.com/SimpleMobileTools/Simple-Gallery.git
				synced 2025-06-05 21:59:19 +02:00 
			
		
		
		
	removing the vertical gesture related settings
This commit is contained in:
		| @@ -64,8 +64,6 @@ class SettingsActivity : SimpleActivity() { | |||||||
|         setupAppPasswordProtection() |         setupAppPasswordProtection() | ||||||
|         setupFileDeletionPasswordProtection() |         setupFileDeletionPasswordProtection() | ||||||
|         setupDeleteEmptyFolders() |         setupDeleteEmptyFolders() | ||||||
|         setupAllowPhotoGestures() |  | ||||||
|         setupAllowVideoGestures() |  | ||||||
|         setupAllowDownGesture() |         setupAllowDownGesture() | ||||||
|         setupAllowRotatingWithGestures() |         setupAllowRotatingWithGestures() | ||||||
|         setupShowNotch() |         setupShowNotch() | ||||||
| @@ -375,22 +373,6 @@ class SettingsActivity : SimpleActivity() { | |||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     private fun setupAllowPhotoGestures() { |  | ||||||
|         settings_allow_photo_gestures.isChecked = config.allowPhotoGestures |  | ||||||
|         settings_allow_photo_gestures_holder.setOnClickListener { |  | ||||||
|             settings_allow_photo_gestures.toggle() |  | ||||||
|             config.allowPhotoGestures = settings_allow_photo_gestures.isChecked |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     private fun setupAllowVideoGestures() { |  | ||||||
|         settings_allow_video_gestures.isChecked = config.allowVideoGestures |  | ||||||
|         settings_allow_video_gestures_holder.setOnClickListener { |  | ||||||
|             settings_allow_video_gestures.toggle() |  | ||||||
|             config.allowVideoGestures = settings_allow_video_gestures.isChecked |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     private fun setupAllowDownGesture() { |     private fun setupAllowDownGesture() { | ||||||
|         settings_allow_down_gesture.isChecked = config.allowDownGesture |         settings_allow_down_gesture.isChecked = config.allowDownGesture | ||||||
|         settings_allow_down_gesture_holder.setOnClickListener { |         settings_allow_down_gesture_holder.setOnClickListener { | ||||||
|   | |||||||
| @@ -269,7 +269,7 @@ class Config(context: Context) : BaseConfig(context) { | |||||||
|         set(deleteEmptyFolders) = prefs.edit().putBoolean(DELETE_EMPTY_FOLDERS, deleteEmptyFolders).apply() |         set(deleteEmptyFolders) = prefs.edit().putBoolean(DELETE_EMPTY_FOLDERS, deleteEmptyFolders).apply() | ||||||
|  |  | ||||||
|     var allowPhotoGestures: Boolean |     var allowPhotoGestures: Boolean | ||||||
|         get() = prefs.getBoolean(ALLOW_PHOTO_GESTURES, false) |         get() = prefs.getBoolean(ALLOW_PHOTO_GESTURES, true) | ||||||
|         set(allowPhotoGestures) = prefs.edit().putBoolean(ALLOW_PHOTO_GESTURES, allowPhotoGestures).apply() |         set(allowPhotoGestures) = prefs.edit().putBoolean(ALLOW_PHOTO_GESTURES, allowPhotoGestures).apply() | ||||||
|  |  | ||||||
|     var allowVideoGestures: Boolean |     var allowVideoGestures: Boolean | ||||||
|   | |||||||
| @@ -310,29 +310,6 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |  | ||||||
|             android:id="@+id/settings_allow_video_gestures_holder" |  | ||||||
|             android:layout_width="match_parent" |  | ||||||
|             android:layout_height="wrap_content" |  | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |  | ||||||
|             android:background="?attr/selectableItemBackground" |  | ||||||
|             android:paddingStart="@dimen/normal_margin" |  | ||||||
|             android:paddingTop="@dimen/activity_margin" |  | ||||||
|             android:paddingEnd="@dimen/normal_margin" |  | ||||||
|             android:paddingBottom="@dimen/activity_margin"> |  | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |  | ||||||
|                 android:id="@+id/settings_allow_video_gestures" |  | ||||||
|                 android:layout_width="match_parent" |  | ||||||
|                 android:layout_height="wrap_content" |  | ||||||
|                 android:background="@null" |  | ||||||
|                 android:clickable="false" |  | ||||||
|                 android:paddingStart="@dimen/medium_margin" |  | ||||||
|                 android:text="@string/allow_video_gestures" |  | ||||||
|                 app:switchPadding="@dimen/medium_margin" /> |  | ||||||
|  |  | ||||||
|         </RelativeLayout> |  | ||||||
|  |  | ||||||
|         <com.simplemobiletools.commons.views.MyTextView |         <com.simplemobiletools.commons.views.MyTextView | ||||||
|             android:id="@+id/thumbnails_label" |             android:id="@+id/thumbnails_label" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
| @@ -625,29 +602,6 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |  | ||||||
|             android:id="@+id/settings_allow_photo_gestures_holder" |  | ||||||
|             android:layout_width="match_parent" |  | ||||||
|             android:layout_height="wrap_content" |  | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |  | ||||||
|             android:background="?attr/selectableItemBackground" |  | ||||||
|             android:paddingStart="@dimen/normal_margin" |  | ||||||
|             android:paddingTop="@dimen/activity_margin" |  | ||||||
|             android:paddingEnd="@dimen/normal_margin" |  | ||||||
|             android:paddingBottom="@dimen/activity_margin"> |  | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |  | ||||||
|                 android:id="@+id/settings_allow_photo_gestures" |  | ||||||
|                 android:layout_width="match_parent" |  | ||||||
|                 android:layout_height="wrap_content" |  | ||||||
|                 android:background="@null" |  | ||||||
|                 android:clickable="false" |  | ||||||
|                 android:paddingStart="@dimen/medium_margin" |  | ||||||
|                 android:text="@string/allow_photo_gestures" |  | ||||||
|                 app:switchPadding="@dimen/medium_margin" /> |  | ||||||
|  |  | ||||||
|         </RelativeLayout> |  | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_allow_down_gesture_holder" |             android:id="@+id/settings_allow_down_gesture_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user