summaryrefslogtreecommitdiff
path: root/game/screens.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/screens.rpy')
-rw-r--r--game/screens.rpy18
1 files changed, 13 insertions, 5 deletions
diff --git a/game/screens.rpy b/game/screens.rpy
index 98cc665..b466473 100644
--- a/game/screens.rpy
+++ b/game/screens.rpy
@@ -1192,7 +1192,7 @@ transform msgbox_emp:
yalign 0.50
linear 0.1
-screen msgbox(message):
+screen msgbox(message, anim=True):
## Ensure other screens do not get input while this screen is displayed.
modal True
@@ -1201,7 +1201,8 @@ screen msgbox(message):
style_prefix "confirm"
frame:
- at msgbox_emp
+ if anim:
+ at msgbox_emp
vbox:
xalign 0.5
@@ -1688,10 +1689,10 @@ style slider_pref_slider:
variant "small"
xsize 600
-screen input_box(ib_message=_("Please write it down here: ")):
+screen input_box(ib_message=_("Please write it down here: "), baloney=""):
window:
background Frame("gui/frame.png", 5, 5)
- yalign 0.5
+ yalign 0.25
xalign 0.5
ypadding 30
xpadding 30
@@ -1699,11 +1700,18 @@ screen input_box(ib_message=_("Please write it down here: ")):
xminimum 512
yminimum 95
vbox:
- text (ib_message) color "#3e3e3e" yalign 0.0 size 28
+ text (ib_message) color "#3ee33e" yalign 0.0 size 28
input:
id "msgmsg"
color ((128, 128, 128, 220))
italic True
size 26
copypaste True
+ fixed:
+ label (baloney):
+ style "pref_label"
+ yalign 0.02
+ xalign 0.50
+ text_size 54
+ text_outlines [ (1, "#000", 0, 0) ]