Skip to content

Commit

Permalink
Added window icon
Browse files Browse the repository at this point in the history
  • Loading branch information
qirien committed May 15, 2018
1 parent ef28b47 commit cd7c309
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 30 deletions.
Binary file modified game/gui/window_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions game/plugin-poetry.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ screen plugin_poetry:
background "images/stars.jpg"
frame:
yfill True
xpadding 50
ypadding 10
background "#aaaaaa"
vbox:
vbox:
Expand Down
56 changes: 28 additions & 28 deletions game/poetry-display.rpy
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
screen poetry_display:
frame:
style_prefix "pd"
xpadding 100
ypadding 10
style_prefix "pp"
xfill True
yfill True
yalign 0.0
background "#aaaaaa"
hbox:
xfill True
vbox:
spacing 20
hbox:
label "Poems" text_size 50
background "images/stars.jpg"
frame:
yfill True
background "#aaaaaa"
hbox:
xfill True
vbox:
spacing 30
for count in range(0, len(poems)):
vbox:
spacing 5
for i in range(0, MAX_LINES):
hbox:
spacing 5
if (i < len(poems[count])):
for j in range(0, len(poems[count][i])):
textbutton poems[count][i][j] action Confirm("Delete this poem?", DeletePoem(count))
spacing 20
hbox:
label "Poems" text_size 50
vbox:
spacing 30
for count in range(0, len(poems)):
vbox:
spacing 5
for i in range(0, MAX_LINES):
hbox:
spacing 5
if (i < len(poems[count])):
for j in range(0, len(poems[count][i])):
textbutton poems[count][i][j] action Confirm("Delete this poem?", DeletePoem(count))

vbox:
xalign 0.8
spacing 5
textbutton "Add New Poem" action Jump("make_poem") sensitive (len(poems) < MAX_POEMS)
textbutton "Screenshot" action Screenshot()
textbutton "Save" action ShowMenu("save")
textbutton "Quit" action Return()
vbox:
xalign 0.8
spacing 5
textbutton "Add New Poem" action Jump("make_poem") sensitive (len(poems) < MAX_POEMS)
textbutton "Screenshot" action Screenshot()
textbutton "Save" action ShowMenu("save")
textbutton "Quit" action Return()

init python:
def delete_poem(poem_number):
Expand Down

0 comments on commit cd7c309

Please sign in to comment.