From 5d13c17d526ab8365cadd0b826a8d76d265ffb9b Mon Sep 17 00:00:00 2001 From: Brian Pellin Date: Fri, 21 Aug 2009 00:18:05 -0500 Subject: [PATCH] Increase clipboard clear time. --- CHANGELOG | 1 + src/com/android/keepass/EntryActivity.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 2c09645a0..5ee8a3088 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ KeePassDroid (0.4) KeePassDroid (0.3.4) * Add context menus * Deal with crash when resuming activity after the process has been killed + * Increase clipboard clear time to 60 seconds as a stopgap until I come add a configurable setting. KeePassDroid (0.3.3) * Add new icon and UI enhancements from Francis Jacquerye diff --git a/src/com/android/keepass/EntryActivity.java b/src/com/android/keepass/EntryActivity.java index 5f2e946ac..7e458ceef 100644 --- a/src/com/android/keepass/EntryActivity.java +++ b/src/com/android/keepass/EntryActivity.java @@ -52,7 +52,7 @@ public class EntryActivity extends LockingActivity { private static final int MENU_COPY_PASS = Menu.FIRST + 3; private static final int MENU_LOCK = Menu.FIRST + 4; - private static final long CLIP_CLEAR_TIME = 30 * 1000; + private static final long CLIP_CLEAR_TIME = 300 * 1000; public static void Launch(Activity act, PwEntry pw, int pos) { Intent i = new Intent(act, EntryActivity.class);