summaryrefslogtreecommitdiffstats
path: root/src/com/android/dreams/phototable/KeyboardInterpreter.java
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2013-04-10 14:47:29 -0400
committerChris Wren <cwren@android.com>2013-04-10 14:47:29 -0400
commit84c3d5580e7168d1d150c1dd24340b19eb501cd2 (patch)
tree7b9539e9a6a073161b227337e6b931e2cca1fc22 /src/com/android/dreams/phototable/KeyboardInterpreter.java
parentbcfd4439d730a4d783a02596c8ab444796323aad (diff)
downloadandroid_packages_screensavers_PhotoTable-84c3d5580e7168d1d150c1dd24340b19eb501cd2.tar.gz
android_packages_screensavers_PhotoTable-84c3d5580e7168d1d150c1dd24340b19eb501cd2.tar.bz2
android_packages_screensavers_PhotoTable-84c3d5580e7168d1d150c1dd24340b19eb501cd2.zip
story mode: tune timeouts and timeout management.
Bug: 8572979 Change-Id: Ica0559bec273d3628c96b5c25e6e8303226ef433
Diffstat (limited to 'src/com/android/dreams/phototable/KeyboardInterpreter.java')
-rw-r--r--src/com/android/dreams/phototable/KeyboardInterpreter.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/dreams/phototable/KeyboardInterpreter.java b/src/com/android/dreams/phototable/KeyboardInterpreter.java
index d7b55f4..874599b 100644
--- a/src/com/android/dreams/phototable/KeyboardInterpreter.java
+++ b/src/com/android/dreams/phototable/KeyboardInterpreter.java
@@ -65,6 +65,8 @@ public class KeyboardInterpreter {
default:
if (DEBUG) Log.d(TAG, "dropped unexpected: " + keyCode);
consumed = false;
+ // give the user some more time to figure it out
+ mTable.refreshSelection();
break;
}
} else {
@@ -109,6 +111,8 @@ public class KeyboardInterpreter {
default:
if (DEBUG) Log.d(TAG, "dropped unexpected: " + keyCode);
consumed = false;
+ // give the user some more time to figure it out
+ mTable.refreshFocus();
break;
}
}