Skip to content

Commit

Permalink
[UI] Make snowfall condition consistent (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
quadracik authored Jul 1, 2024
1 parent 50ef7f8 commit 137ea65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SettingsThemeCard(util: SettingsUtil) : SettingsCard(util) {
)

override fun getItems(card: MaterialAboutCard) = listOfNotNull(
if (Date.getToday().month % 11 == 1) // cool math games
if (Date.getToday().month / 3 % 4 == 0) // cool math games
util.createPropertyItem(
text = R.string.settings_theme_snowfall_text,
subText = R.string.settings_theme_snowfall_subtext,
Expand Down

0 comments on commit 137ea65

Please sign in to comment.