summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
diff options
context:
space:
mode:
authormahdihijazi <mahdi.hijaz@hotmail.com>2018-01-27 00:21:37 +0100
committermahdihijazi <mahdi.hijaz@hotmail.com>2018-07-01 22:25:12 +0200
commit93165379642e05febdb36ce323ce529b74cd2f5b (patch)
tree526bf658ddd8d15c3ce85c87a2b089d142a3a44f /Source/Android/app/src/main/java
parent87534f1b2f6f3ef62470cacb7891aa9a62d99d95 (diff)
Android: Change the incremental value of the slider to be 5% instead of 20%
Diffstat (limited to 'Source/Android/app/src/main/java')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/settings/SettingsAdapter.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/settings/SettingsAdapter.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/settings/SettingsAdapter.java
index 403e011143..6c10c1b3a6 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/settings/SettingsAdapter.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/settings/SettingsAdapter.java
@@ -186,6 +186,7 @@ public final class SettingsAdapter extends RecyclerView.Adapter<SettingViewHolde
seekbar.setMax(item.getMax());
seekbar.setProgress(mSeekbarProgress);
+ seekbar.setKeyProgressIncrement(5);
seekbar.setOnSeekBarChangeListener(this);
}