aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/purkle
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-17 11:29:18 +1000
committerDavid Walter Seikel2014-05-17 11:29:18 +1000
commit73c6d05703d8f1eef553647bd38b472197d5a275 (patch)
tree8a24e15eb271a4cfa16c90c89e89fdc92d385c71 /src/purkle
parentRemove excess sleep and env setting. (diff)
downloadSledjHamr-73c6d05703d8f1eef553647bd38b472197d5a275.zip
SledjHamr-73c6d05703d8f1eef553647bd38b472197d5a275.tar.gz
SledjHamr-73c6d05703d8f1eef553647bd38b472197d5a275.tar.bz2
SledjHamr-73c6d05703d8f1eef553647bd38b472197d5a275.tar.xz
Adjust windows a bit.
Diffstat (limited to 'src/purkle')
-rw-r--r--src/purkle/purkle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/purkle/purkle.c b/src/purkle/purkle.c
index 9cafe01..a9b1652 100644
--- a/src/purkle/purkle.c
+++ b/src/purkle/purkle.c
@@ -12,7 +12,7 @@ static winFang *purkleAdd(winFang *parent, int w, int h, EPhysics_World *world)
12{ 12{
13 winFang *me; 13 winFang *me;
14 14
15 me = winFangAdd(parent, 30, 590, w, h, "chatter box", "purkle", world); 15 me = winFangAdd(parent, 300, 26, w, h, "chatter box", "purkle", world);
16 16
17 history = widgetAdd(me, WT_TEXTBOX, "History is shown here", -1, -1, -1, -1); 17 history = widgetAdd(me, WT_TEXTBOX, "History is shown here", -1, -1, -1, -1);
18 eo_do(history->obj, 18 eo_do(history->obj,
@@ -106,7 +106,7 @@ int luaopen_purkle(lua_State *L)
106 world = gl->world; 106 world = gl->world;
107 } 107 }
108 108
109 if (!me) me = purkleAdd(parent, 500, 420, world); 109 if (!me) me = purkleAdd(parent, 600, 420, world);
110 push_lua(L, "@ ( = )", skang, MODULEEND, _M, 0); 110 push_lua(L, "@ ( = )", skang, MODULEEND, _M, 0);
111 111
112 // Return _M, the table itself, not the index. 112 // Return _M, the table itself, not the index.