From 51215c350e41bbdd4fdf63d39651c713b1e28ed6 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 9 Jun 2011 14:17:07 +0000 Subject: [PATCH] Elm label: Fix text sliding. SVN revision: 60134 --- legacy/elementary/data/themes/default.edc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/elementary/data/themes/default.edc b/legacy/elementary/data/themes/default.edc index c056816b10..d35990ec55 100644 --- a/legacy/elementary/data/themes/default.edc +++ b/legacy/elementary/data/themes/default.edc @@ -1483,7 +1483,7 @@ collections { public message(Msg_Type:type, id, ...) { if ((type == MSG_FLOAT_SET) && (id == 0)) { new Float:duration; - duration = getarg(2); + duration = getfarg(2); set_float(g_duration, duration); } } @@ -1609,7 +1609,7 @@ collections { public message(Msg_Type:type, id, ...) { if ((type == MSG_FLOAT_SET) && (id == 0)) { new Float:duration; - duration = getarg(2); + duration = getfarg(2); set_float(g_duration, duration); } } @@ -1734,7 +1734,7 @@ collections { public message(Msg_Type:type, id, ...) { if ((type == MSG_FLOAT_SET) && (id == 0)) { new Float:duration; - duration = getarg(2); + duration = getfarg(2); set_float(g_duration, duration); } }