Skip to content

Commit

Permalink
settings: Move image settings from color to display
Browse files Browse the repository at this point in the history
  • Loading branch information
calcitem committed Oct 4, 2024
1 parent 8d1a030 commit 8254468
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,6 @@ class AppearanceSettingsPage extends StatelessWidget {
return SettingsCard(
title: Text(S.of(context).color),
children: <Widget>[
SettingsListTile(
titleString: S.of(context).backgroundImage,
onTap: () => setBackgroundImage(context),
),
SettingsListTile(
titleString: S.of(context).pieceImage,
onTap: () => setPieceImage(context),
),
SettingsListTile(
titleString: S.of(context).theme,
onTap: () => _setTheme(context, colorSettings),
Expand Down Expand Up @@ -422,6 +414,14 @@ class AppearanceSettingsPage extends StatelessWidget {
titleString: S.of(context).animationDuration,
onTap: () => setAnimationDuration(context),
),
SettingsListTile(
titleString: S.of(context).backgroundImage,
onTap: () => setBackgroundImage(context),
),
SettingsListTile(
titleString: S.of(context).pieceImage,
onTap: () => setPieceImage(context),
),
],
);
}
Expand Down

0 comments on commit 8254468

Please sign in to comment.