From 73c6d05703d8f1eef553647bd38b472197d5a275 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 17 May 2014 11:29:18 +1000 Subject: Adjust windows a bit. --- src/GuiLua/GuiLua.c | 2 +- src/extantz/woMan.c | 2 +- src/purkle/purkle.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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) world = gl->world; } - win = winFangAdd(parent, 25, 55, w, h, title, name, world); + win = winFangAdd(parent, 5, 26, w, h, title, name, world); win->module = module; if (gl) { 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) char buf[PATH_MAX]; int i; - me = winFangAdd(ourGlobals->mainWindow, 30, 200, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "virtual world manager", "woMan", ourGlobals->world); + me = winFangAdd(ourGlobals->mainWindow, 600, 650, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "virtual world manager", "woMan", ourGlobals->world); // A tab thingy. 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) { winFang *me; - me = winFangAdd(parent, 30, 590, w, h, "chatter box", "purkle", world); + me = winFangAdd(parent, 300, 26, w, h, "chatter box", "purkle", world); history = widgetAdd(me, WT_TEXTBOX, "History is shown here", -1, -1, -1, -1); eo_do(history->obj, @@ -106,7 +106,7 @@ int luaopen_purkle(lua_State *L) world = gl->world; } - if (!me) me = purkleAdd(parent, 500, 420, world); + if (!me) me = purkleAdd(parent, 600, 420, world); push_lua(L, "@ ( = )", skang, MODULEEND, _M, 0); // Return _M, the table itself, not the index. -- cgit v1.1