Skip to content

Commit c94c087

Browse files
committed
Added setting for handling metadata
1 parent 257ca32 commit c94c087

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/views/SettingsViewPage.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ class _SettingsPageState extends State<SettingsPage> {
163163
Text(appStrings(context).settings_displayTitles, style: TextStyle(color: Colors.black, fontSize: 16)),
164164
Switch(
165165
value: API.prefs.getBool('show_thumbnail_title'),
166+
activeColor: Theme.of(context).colorScheme.primary,
166167
onChanged: (bool) {
167168
setState(() {
168169
API.prefs.setBool('show_thumbnail_title', bool);
@@ -252,6 +253,7 @@ class _SettingsPageState extends State<SettingsPage> {
252253
Text(appStrings(context).settings_stripGPSdata, style: TextStyle(color: Colors.black, fontSize: 16)),
253254
Switch(
254255
value: API.prefs.getBool('remove_metadata'),
256+
activeColor: Theme.of(context).colorScheme.primary,
255257
onChanged: (bool) {
256258
setState(() {
257259
API.prefs.setBool('remove_metadata', bool);

0 commit comments

Comments
 (0)