diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-16 15:24:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-16 15:24:31 -0300 |
commit | ec24251f5243eb7d9dc95e89d16d457a49b155fa (patch) | |
tree | 84cb5b83916f503c56b59275ce3c0babcf1e78ab | |
parent | 966323e8c4bd1ed024bd93266dfea4e78ea6f54b (diff) | |
download | client-ec24251f5243eb7d9dc95e89d16d457a49b155fa.tar.gz client-ec24251f5243eb7d9dc95e89d16d457a49b155fa.tar.bz2 client-ec24251f5243eb7d9dc95e89d16d457a49b155fa.tar.xz client-ec24251f5243eb7d9dc95e89d16d457a49b155fa.zip |
Make preference button more visible
-rw-r--r-- | game/screens.rpy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/game/screens.rpy b/game/screens.rpy index 6c47cc4..3bd84ce 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -425,7 +425,11 @@ screen main_menu(): yalign 0.06 xfill False yfill False - textbutton _("Preferences") action ShowMenu("preferences") + textbutton _("{color=#FFC}Preferences{/color}"): + xpadding 20 + ypadding 20 + action ShowMenu("preferences") + background Frame("gui/frame.png", 5, 5) ## Name & Version if gui.show_name: |