aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandros Frantzis <alexandros.frantzis@linaro.org>2012-07-18 19:10:51 +0300
committerAlexandros Frantzis <alexandros.frantzis@linaro.org>2012-07-18 19:10:51 +0300
commit57f00f978878c622dbe9cc8bde7cb165dac00990 (patch)
tree311082eabb4252949854e00f2a46941170f4dabe
parentd7029250ae6a784d04563cf57811f8a72cc8a467 (diff)
downloadglmark2-57f00f978878c622dbe9cc8bde7cb165dac00990.tar.gz
Android: Ensure that the option list is updated after changing an option using a text entry.
-rw-r--r--android/src/org/linaro/glmark2/EditorActivity.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/android/src/org/linaro/glmark2/EditorActivity.java b/android/src/org/linaro/glmark2/EditorActivity.java
index 3c29428..834c915 100644
--- a/android/src/org/linaro/glmark2/EditorActivity.java
+++ b/android/src/org/linaro/glmark2/EditorActivity.java
@@ -183,6 +183,7 @@ public class EditorActivity extends Activity {
event.getAction() == KeyEvent.ACTION_UP))
{
item.value = v.getText().toString();
+ adapter.notifyDataSetChanged();
dismissDialog(DIALOG_SCENE_OPTION_TEXT_ID);
}
return true;