Skip to content

Commit cde4ee9

Browse files
committed
Minor rework
* Moved settings to a better section * Made string a bit shorter
1 parent ab45efc commit cde4ee9

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<string name="use_inexact_seek_summary">Inexact seek allows the player to seek to positions faster with reduced precision. Seeking for 5, 15 or 25 seconds doesn\'t work with this</string>
8080
<string name="seek_duration_title">Fast-forward/-rewind seek duration</string>
8181
<string name="progressive_load_interval_title">Playback load interval size</string>
82-
<string name="progressive_load_interval_summary">Change the load interval size (currently at %s). A lower value may speed up initial video loading. Changes require a player restart.</string>
82+
<string name="progressive_load_interval_summary">Change the load interval size (currently %s). A lower value may speed up initial video loading. Changes require a player restart.</string>
8383
<string name="clear_queue_confirmation_title">Ask for confirmation before clearing a queue</string>
8484
<string name="clear_queue_confirmation_summary">Switching from one player to another may replace your queue</string>
8585
<string name="clear_queue_confirmation_description">The active player queue will be replaced</string>

app/src/main/res/xml/video_audio_settings.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,16 @@
6161
app:singleLineTitle="false"
6262
app:iconSpaceReserved="false" />
6363

64+
<ListPreference
65+
android:defaultValue="@string/progressive_load_interval_default_value"
66+
android:entries="@array/progressive_load_interval_descriptions"
67+
android:entryValues="@array/progressive_load_interval_values"
68+
android:key="@string/progressive_load_interval_key"
69+
android:summary="@string/progressive_load_interval_summary"
70+
android:title="@string/progressive_load_interval_title"
71+
app:singleLineTitle="false"
72+
app:iconSpaceReserved="false" />
73+
6474
<PreferenceCategory
6575
android:layout="@layout/settings_category_header_layout"
6676
android:title="@string/settings_category_player_title"
@@ -206,16 +216,6 @@
206216
app:singleLineTitle="false"
207217
app:iconSpaceReserved="false" />
208218

209-
<ListPreference
210-
android:defaultValue="@string/progressive_load_interval_default_value"
211-
android:entries="@array/progressive_load_interval_descriptions"
212-
android:entryValues="@array/progressive_load_interval_values"
213-
android:key="@string/progressive_load_interval_key"
214-
android:summary="@string/progressive_load_interval_summary"
215-
android:title="@string/progressive_load_interval_title"
216-
app:singleLineTitle="false"
217-
app:iconSpaceReserved="false" />
218-
219219
<SwitchPreferenceCompat
220220
android:defaultValue="false"
221221
android:key="@string/clear_queue_confirmation_key"

0 commit comments

Comments
 (0)