diff options
author | lado <herrlado@gmail.com> | 2013-12-26 13:08:48 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-12-26 13:08:48 +0100 |
commit | 89eb69ebf514baecf9e7cfc0ba417a802bce4cbd (patch) | |
tree | 62c42cbb5a3ef2bfb42155e1349d3c2f633ce052 /vdrmanager/src/de/bjusystems | |
parent | 7eb3e81c7a75bf7b671fe75b458380d007a286da (diff) | |
download | vdr-manager-89eb69ebf514baecf9e7cfc0ba417a802bce4cbd.tar.gz vdr-manager-89eb69ebf514baecf9e7cfc0ba417a802bce4cbd.tar.bz2 |
adapter.notifyDataSetChanged(); just once
Diffstat (limited to 'vdrmanager/src/de/bjusystems')
-rw-r--r-- | vdrmanager/src/de/bjusystems/vdrmanager/gui/RecordingListActivity.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/gui/RecordingListActivity.java b/vdrmanager/src/de/bjusystems/vdrmanager/gui/RecordingListActivity.java index f137fde..e3a3b4e 100644 --- a/vdrmanager/src/de/bjusystems/vdrmanager/gui/RecordingListActivity.java +++ b/vdrmanager/src/de/bjusystems/vdrmanager/gui/RecordingListActivity.java @@ -404,9 +404,8 @@ public class RecordingListActivity extends BaseEventListActivity<Recording> .getDailyHeader())); } adapter.add(new RecordingListItem((Recording) rec)); - adapter.notifyDataSetChanged(); } - + adapter.notifyDataSetChanged(); } @Override |