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.

pull/14/head
Arne Jans 14 years ago
parent d57cd119ae
commit f8b0b4758b

@ -199,7 +199,7 @@ public class NotificationActivity extends TaskListActivity implements OnTimeSetL
* Snooze and re-trigger this alarm * Snooze and re-trigger this alarm
*/ */
private void snooze() { 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(); Date now = new Date();
now.setHours(now.getHours() + 1); now.setHours(now.getHours() + 1);
int hour = now.getHours(); int hour = now.getHours();

Loading…
Cancel
Save