diff options
Diffstat (limited to '')
-rw-r--r-- | src/GuiLua/GuiLua.c | 2 | ||||
-rw-r--r-- | src/extantz/woMan.c | 2 | ||||
-rw-r--r-- | src/purkle/purkle.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/GuiLua/GuiLua.c b/src/GuiLua/GuiLua.c index 0fc27f4..ae9af48 100644 --- a/src/GuiLua/GuiLua.c +++ b/src/GuiLua/GuiLua.c | |||
@@ -252,7 +252,7 @@ static int window(lua_State *L) | |||
252 | world = gl->world; | 252 | world = gl->world; |
253 | } | 253 | } |
254 | 254 | ||
255 | win = winFangAdd(parent, 25, 55, w, h, title, name, world); | 255 | win = winFangAdd(parent, 5, 26, w, h, title, name, world); |
256 | win->module = module; | 256 | win->module = module; |
257 | if (gl) | 257 | if (gl) |
258 | { | 258 | { |
diff --git a/src/extantz/woMan.c b/src/extantz/woMan.c index 2a881ce..64df84c 100644 --- a/src/extantz/woMan.c +++ b/src/extantz/woMan.c | |||
@@ -159,7 +159,7 @@ winFang *woMan_add(globals *ourGlobals) | |||
159 | char buf[PATH_MAX]; | 159 | char buf[PATH_MAX]; |
160 | int i; | 160 | int i; |
161 | 161 | ||
162 | me = winFangAdd(ourGlobals->mainWindow, 30, 200, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "virtual world manager", "woMan", ourGlobals->world); | 162 | me = winFangAdd(ourGlobals->mainWindow, 600, 650, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "virtual world manager", "woMan", ourGlobals->world); |
163 | 163 | ||
164 | // A tab thingy. | 164 | // A tab thingy. |
165 | tb = elm_toolbar_add(me->win); | 165 | tb = elm_toolbar_add(me->win); |
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. |