elm_clock : The step of hour decimal in editing mode should be 12 not to touch hour...
authorRyuan Choi <ryuan.choi@gmail.com>
Wed, 5 Jun 2013 22:51:44 +0000 (07:51 +0900)
committerRyuan Choi <ryuan.choi@gmail.com>
Wed, 5 Jun 2013 22:54:51 +0000 (07:54 +0900)
ChangeLog
NEWS
src/lib/elm_clock.c

index 32747d0..c118914 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 2013-06-05 ChunEon Park (Hermet)
 
         * Fix navifame to recover the focus for the prev page when top item is deleted.
+
+2013-06-06 Ryuan Choi (ryuan)
+
+        * Up/down step of hour decimal of elm_clock is changed to 12 not to touch hour unit at editing mode.
diff --git a/NEWS b/NEWS
index 5765b91..369b449 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -238,6 +238,7 @@ Fixes:
    * Fix elm_mapbuf to be enabled before it's content is entirely rendered once.     this will reduce the cases that content is not updated in the screen.
    * Fix elm_colorselector does not update color bar when picker changed color.
    * Fix navifame to recover the focus for the prev page when top item is deleted.
+   * Up/down step of hour decimal of elm_clock is changed to 12 not to touch hour unit at editing mode.
 
 Removals:
 
index b49fea6..12887ca 100644 (file)
@@ -31,7 +31,7 @@ _on_clock_val_up(void *data)
    if (!sd->sel_obj) goto clock_val_up_cancel;
    if (sd->sel_obj == sd->digit[0])
      {
-        sd->hrs = sd->hrs + 10;
+        sd->hrs = sd->hrs + 12;
         if (sd->hrs >= 24) sd->hrs -= 24;
      }
    if (sd->sel_obj == sd->digit[1])
@@ -87,7 +87,7 @@ _on_clock_val_down(void *data)
    if (!sd->sel_obj) goto clock_val_down_cancel;
    if (sd->sel_obj == sd->digit[0])
      {
-        sd->hrs = sd->hrs - 10;
+        sd->hrs = sd->hrs - 12;
         if (sd->hrs < 0) sd->hrs += 24;
      }
    if (sd->sel_obj == sd->digit[1])