diff --git a/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java b/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java
index 86198650c68..7ec6a31ff45 100644
--- a/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java
+++ b/app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java
@@ -974,6 +974,11 @@ private void setHeightThumbnail() {
private void showContent() {
contentRootLayoutHiding.setVisibility(View.VISIBLE);
+ final boolean showDescriptionOnLoad = PreferenceManager.getDefaultSharedPreferences(activity)
+ .getBoolean(getString(R.string.always_expand_description_key), false);
+ if (showDescriptionOnLoad) {
+ toggleTitleAndDescription();
+ }
}
protected void setInitialData(int serviceId, String url, String name) {
diff --git a/app/src/main/res/values/settings_keys.xml b/app/src/main/res/values/settings_keys.xml
index e97bf11cadb..5e2a297f567 100644
--- a/app/src/main/res/values/settings_keys.xml
+++ b/app/src/main/res/values/settings_keys.xml
@@ -1125,5 +1125,5 @@
- @string/list
- @string/grid
-
+ always_expand_description
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a1e9d28d11b..d8e0ba87ada 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -644,4 +644,5 @@
Enable fast mode
Disable fast mode
Do you think feed loading is too slow? If so, try enabling fast loading (you can change it in settings or by pressing the button below).\n\nNewPipe offers two feed loading strategies:\n• Fetching the whole subscription channel, which is slow but complete.\n• Using a dedicated service endpoint, which is fast but usually not complete.\n\nThe difference between the two is that the fast one usually lacks some information, like the item\'s duration or type (can\'t distinguish between live videos and normal ones) and it may return less items.\n\nYouTube is an example of a service that offers this fast method with its RSS feed.\n\nSo the choice boils down to what you prefer: speed or precise information.
-
\ No newline at end of file
+ Always expand description
+
diff --git a/app/src/main/res/xml/appearance_settings.xml b/app/src/main/res/xml/appearance_settings.xml
index 31be267af9a..4038a14f237 100644
--- a/app/src/main/res/xml/appearance_settings.xml
+++ b/app/src/main/res/xml/appearance_settings.xml
@@ -35,4 +35,9 @@
android:title="@string/caption_setting_title"
android:summary="@string/caption_setting_description"/>
+