← Back to team overview

elementaryart team mailing list archive

[Merge] lp:~codygarver/granite/fix-bug-979412 into lp:granite

 

Victor Eduardo has proposed merging lp:~codygarver/granite/fix-bug-979412 into lp:granite.

Requested reviews:
  elementary Pantheon team (elementary-pantheon)
Related bugs:
  Bug #979412 in Granite: "[TimePicker] Update the Adjustement"
  https://bugs.launchpad.net/granite/+bug/979412

For more details, see:
https://code.launchpad.net/~codygarver/granite/fix-bug-979412/+merge/101858
-- 
https://code.launchpad.net/~codygarver/granite/fix-bug-979412/+merge/101858
Your team elementaryart (old) is subscribed to branch lp:granite.
=== modified file 'lib/Widgets/TimePicker.vala'
--- lib/Widgets/TimePicker.vala	2012-03-25 17:53:42 +0000
+++ lib/Widgets/TimePicker.vala	2012-04-13 05:13:19 +0000
@@ -48,6 +48,8 @@
 
         void on_time_changed () {
             text = time.format (format);
+            int new_time = time.get_hour () * 60 + 30;
+            adjustment.set_value (new_time);
         }
         
         protected override int input (out double new_value) {


Follow ups