From 3ecca04798b5df581ca19b361c89a5b906506267 Mon Sep 17 00:00:00 2001 From: bdsabian Date: Thu, 14 Feb 2002 00:26:22 +0000 Subject: [PATCH] hopefully this fixes the problem people are having with the background not loading. SVN revision: 5937 --- data/epplets/clock/clock2.fe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/epplets/clock/clock2.fe b/data/epplets/clock/clock2.fe index da07141ac..92360c55b 100644 --- a/data/epplets/clock/clock2.fe +++ b/data/epplets/clock/clock2.fe @@ -75,7 +75,7 @@ function time_update(object data, number val){ } - data.setText("$hour $min $seconds $timeofday"); + data.setText("$hour:$min:$seconds $timeofday"); epp.addTimer("clockTimer",0.5,"time_update",0,data); } @@ -94,7 +94,7 @@ epp.resize(100, 30); /* create background image object for clock */ backgroundObj = new EvasObject(epp); -backgroundObj.addImage("clock.png"); +backgroundObj.addImage(epp.getEppletDir()+"clock.png"); backgroundObj.move(epp.getX(),epp.getY()); backgroundObj.setLayer(9998); backgroundObj.show();