Mercurial > fife-parpg
diff demos/pychan_demo/gui/credits.xml @ 439:cfc7c384603b
- fixed credits gui (path to AUTHORS file wasn't corrected after the buildsystem release)
NOTE:
- I also had to set min/max size for the ScrollArea, otherwise the content wouldn't be displayed
author | chewie@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 02 Mar 2010 12:05:35 +0000 |
parents | 64738befdf3b |
children |
line wrap: on
line diff
--- a/demos/pychan_demo/gui/credits.xml Tue Mar 02 11:49:27 2010 +0000 +++ b/demos/pychan_demo/gui/credits.xml Tue Mar 02 12:05:35 2010 +0000 @@ -1,10 +1,10 @@ -<Window title="Credits."> +<Window title="Credits." size="500,500"> <Label text="These guys contributed to FIFE. Man!" /> - <ScrollArea size="400,400" vertical_scrollbar="0"> - <TextBox name="creditText" filename="../../doc/AUTHORS"/> + <ScrollArea min_size="400,400" max_size="400,400" size="400,400" vertical_scrollbar="0"> + <TextBox name="creditText" filename="../../AUTHORS"/> </ScrollArea> <HBox> <Spacer /> <Button name="okButton" text="You guys rock!"/> </HBox> -</Window> \ No newline at end of file +</Window>