Skip to content

Commit

Permalink
Remove access to the clear theme.
Browse files Browse the repository at this point in the history
Right now, it's so similar to the default theme, having two
choices is confusing.
  • Loading branch information
renpytom committed May 22, 2021
1 parent e921052 commit c92151d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion launcher/game/preferences.rpy
Expand Up @@ -204,7 +204,7 @@ screen preferences:
add HALF_SPACER

textbutton _("Default theme") style "l_checkbox" action [SetField(persistent, "theme", None), RestartAtPreferences() ]
textbutton _("Clear theme") style "l_checkbox" action [SetField(persistent, "theme", "clear", None), RestartAtPreferences() ]
# textbutton _("Clear theme") style "l_checkbox" action [SetField(persistent, "theme", "clear", None), RestartAtPreferences() ]
textbutton _("Dark theme") style "l_checkbox" action [SetField(persistent, "theme", "dark", None), RestartAtPreferences()]


Expand Down
1 change: 1 addition & 0 deletions launcher/game/style.rpy
Expand Up @@ -121,6 +121,7 @@ init -1 python:
WINDOW = Frame(Fixed(Solid(REVERSE_IDLE, xsize=4, xalign=0), Solid(INFO_WINDOW, xsize=794, xalign=1.0), xsize=800, ysize=600), 0, 0, tile=True)

elif persistent.theme == 'clear':

# The color of non-interactive text.
TEXT = "#545454"

Expand Down

0 comments on commit c92151d

Please sign in to comment.