Increase clipboard clear time.

This commit is contained in:
Brian Pellin
2009-08-21 00:18:05 -05:00
parent 3567127da9
commit 5d13c17d52
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ KeePassDroid (0.4)
KeePassDroid (0.3.4) KeePassDroid (0.3.4)
* Add context menus * Add context menus
* Deal with crash when resuming activity after the process has been killed * 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) KeePassDroid (0.3.3)
* Add new icon and UI enhancements from Francis Jacquerye * Add new icon and UI enhancements from Francis Jacquerye

View File

@@ -52,7 +52,7 @@ public class EntryActivity extends LockingActivity {
private static final int MENU_COPY_PASS = Menu.FIRST + 3; private static final int MENU_COPY_PASS = Menu.FIRST + 3;
private static final int MENU_LOCK = Menu.FIRST + 4; 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) { public static void Launch(Activity act, PwEntry pw, int pos) {
Intent i = new Intent(act, EntryActivity.class); Intent i = new Intent(act, EntryActivity.class);