move the hour hand according to the elapsed minutes in an hour

SVN revision: 46433
This commit is contained in:
Viktor Kojouharov 2010-02-24 17:45:04 +00:00
parent 410536ba3d
commit a1c976af85
1 changed files with 2 additions and 2 deletions

View File

@ -9841,10 +9841,10 @@ collections { /* begin the collection of edje groups that are in this file */
set_state(PART:"minutes-sh", "custom", 0.0);
custom_state(PART:"hour", "default", 0.0);
set_state_val(PART:"hour", STATE_MAP_ROT_Z, (hour * 360.0) / 12.0);
set_state_val(PART:"hour", STATE_MAP_ROT_Z, ((hour + minute / 60.0) * 360.0) / 12.0);
set_state(PART:"hour", "custom", 0.0);
custom_state(PART:"hour-sh", "default", 0.0);
set_state_val(PART:"hour-sh", STATE_MAP_ROT_Z, (hour * 360.0) / 12.0);
set_state_val(PART:"hour-sh", STATE_MAP_ROT_Z, ((hour + minute / 60.0) * 360.0) / 12.0);
set_state(PART:"hour-sh", "custom", 0.0);
}
}