feat: add option to turn off dynamic interactions (#1798)

* add option to turn off dynamic interactions

* update

Signed-off-by: dom <githubaccount56556@proton.me>

---------

Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
KoishiMoe
2026-01-09 11:35:47 +08:00
committed by GitHub
parent dbc11c36df
commit 836ab311d6
4 changed files with 30 additions and 9 deletions

View File

@@ -270,6 +270,9 @@ abstract final class Pref {
static int get defaultDynamicType =>
_setting.get(SettingBoxKey.defaultDynamicType, defaultValue: 0);
static bool get showDynInteraction =>
_setting.get(SettingBoxKey.showDynInteraction, defaultValue: true);
static double get blockLimit =>
_setting.get(SettingBoxKey.blockLimit, defaultValue: 0.0);