Revert "fix: mobile remove "Scale custom" (#13323)"

This reverts commit 265d08fc3b.
This commit is contained in:
Alessandro De Blasis
2025-10-29 09:48:44 +01:00
parent 86e5617c96
commit a6a149bf59
2 changed files with 134 additions and 6 deletions

View File

@@ -364,12 +364,11 @@ Future<List<TRadioMenu<String>>> toolbarViewStyle(
value: kRemoteViewStyleAdaptive,
groupValue: groupValue,
onChanged: onChanged),
if (isDesktop || isWebDesktop)
TRadioMenu<String>(
child: Text(translate('Scale custom')),
value: kRemoteViewStyleCustom,
groupValue: groupValue,
onChanged: onChanged)
TRadioMenu<String>(
child: Text(translate('Scale custom')),
value: kRemoteViewStyleCustom,
groupValue: groupValue,
onChanged: onChanged)
];
}