From f1f4f875fc1207c8d30b5ff35ca9087077430d22 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 22 Jan 2012 10:07:43 +1000 Subject: Tidy up the output. --- LuaSL/src/LuaSL.edc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'LuaSL/src/LuaSL.edc') diff --git a/LuaSL/src/LuaSL.edc b/LuaSL/src/LuaSL.edc index 852de08..844fc8e 100644 --- a/LuaSL/src/LuaSL.edc +++ b/LuaSL/src/LuaSL.edc @@ -46,30 +46,30 @@ collections { D.text:font("Sans:style=Bold", 32); D.text:text("Lua rocks!"); text_geom = D.text:geom(); - print(D.text:text()); +--// print(D.text:text()); D.text:show(); --// shutdown func - generally empty or not there. everything garbage collected for you function shutdown () - print("lua::shutdown"); +--// print("lua::shutdown"); end function show () - print("lua::show"); +--// print("lua::show"); end function hide () - print("lua::hide"); +--// print("lua::hide"); end function move (x, y) - print("lua::move x=" .. x .. " x=" .. y); +--// print("lua::move x=" .. x .. " x=" .. y); D.edje:move(0, 0); end function resize (w, h) - print("lua::resize w=" .. w .. " h=" .. h); +--// print("lua::resize w=" .. w .. " h=" .. h); D.text:move((w - text_geom.w) / 2, (h - text_geom.h) / 8); D.edje:resize(w, h); end -- cgit v1.1