Corentin Noël has proposed merging lp:~tintou/granite/timepicker-fix into
lp:granite.
Requested reviews:
elementary Pantheon team (elementary-pantheon)
For more details, see:
https://code.launchpad.net/~tintou/granite/timepicker-fix/+merge/108774
Very tiny bugfix…
--
https://code.launchpad.net/~tintou/granite/timepicker-fix/+merge/108774
Your team elementaryart (old) is subscribed to branch lp:granite.
=== modified file 'lib/Widgets/TimePicker.vala'
--- lib/Widgets/TimePicker.vala 2012-06-03 17:58:24 +0000
+++ lib/Widgets/TimePicker.vala 2012-06-05 15:21:32 +0000
@@ -144,7 +144,7 @@
protected void minutes_right_clicked () {
time = time.add_minutes (-5);
- if (time.get_minute () > 55) {
+ if (time.get_minute () >= 55) {
time = time.add_hours (+1);
}
text = time.format (format);
--
Mailing list: https://launchpad.net/~elementaryart
Post to : [email protected]
Unsubscribe : https://launchpad.net/~elementaryart
More help : https://help.launchpad.net/ListHelp