Double tap zoom toggle (#9384)

* Double tap zoom toggle

Implements a toggle that allows users to disable double tap zoom including QuickScaling for webtoons. Partially resolves #4145

* Update i18n/src/main/res/values/strings.xml

---------

Co-authored-by: arkon <arkon@users.noreply.github.com>
This commit is contained in:
Ken Swenson
2023-04-25 18:06:49 -04:00
committed by GitHub
parent a8f17a3fab
commit 3ce9a9ff97
9 changed files with 44 additions and 1 deletions

View File

@@ -317,6 +317,11 @@ object SettingsReaderScreen : SearchableSettings {
subtitle = stringResource(R.string.split_tall_images_summary),
enabled = !isReleaseBuildType, // TODO: Show in release build when the feature is stable
),
Preference.PreferenceItem.SwitchPreference(
pref = readerPreferences.webtoonDoubleTapZoomEnabled(),
title = stringResource(R.string.pref_double_tap_zoom),
enabled = true,
),
),
)
}