From f8b0b4758b425d2367cb9737e332579941101934 Mon Sep 17 00:00:00 2001 From: Arne Jans Date: Fri, 15 Jul 2011 21:57:18 +0200 Subject: [PATCH] Fix for -Snooze for x hours / isn't label but not default functionality for snooze options.- 15344073. It was only faulty directly after install as the setting-value wasnt written yet and the NotificationActivity assumed the wrong default-value. --- .../com/todoroo/astrid/reminders/NotificationActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationActivity.java b/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationActivity.java index 2ca73a378..955a60c22 100644 --- a/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationActivity.java @@ -199,7 +199,7 @@ public class NotificationActivity extends TaskListActivity implements OnTimeSetL * Snooze and re-trigger this alarm */ private void snooze() { - if(Preferences.getBoolean(R.string.p_rmd_snooze_dialog, true)) { + if(Preferences.getBoolean(R.string.p_rmd_snooze_dialog, false)) { Date now = new Date(); now.setHours(now.getHours() + 1); int hour = now.getHours();