Prep for release - removed threading from fillData in onfocus.

pull/14/head
Tim Su 17 years ago
parent c22cf2e015
commit 40fc726657

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid" package="com.timsu.astrid"
android:versionCode="87" android:versionCode="87"
android:versionName="2.4.1"> android:versionName="2.4.2">
<meta-data android:name="com.a0soft.gphone.aTrackDog.webURL" <meta-data android:name="com.a0soft.gphone.aTrackDog.webURL"
android:value="http://www.weloveastrid.com" /> android:value="http://www.weloveastrid.com" />

@ -685,13 +685,8 @@ public class TaskListSubActivity extends SubActivity {
public void onWindowFocusChanged(boolean hasFocus) { public void onWindowFocusChanged(boolean hasFocus) {
// refresh, since stuff might have changed... // refresh, since stuff might have changed...
if(hasFocus) { if(hasFocus) {
new Thread(new Runnable() {
@Override
public void run() {
fillData(); fillData();
} }
});
}
} }
/** Call an activity to create the given task */ /** Call an activity to create the given task */

Loading…
Cancel
Save