Make order of updateUI: and applyFilter: consistent.

This commit is contained in:
Mitchell Livingston 2006-07-17 11:22:50 +00:00
parent 681cbd2e81
commit 5080d15959
1 changed files with 4 additions and 4 deletions

View File

@ -1175,8 +1175,8 @@ static void sleepCallBack(void * controller, io_service_t y,
{ {
[self checkToStartWaiting: [notification object]]; [self checkToStartWaiting: [notification object]];
[self applyFilter: nil];
[self updateUI: nil]; [self updateUI: nil];
[self applyFilter: nil];
[fInfoController updateInfoStatsAndSettings]; [fInfoController updateInfoStatsAndSettings];
[self updateTorrentHistory]; [self updateTorrentHistory];
} }
@ -1220,8 +1220,8 @@ static void sleepCallBack(void * controller, io_service_t y,
{ {
[torrentToStart startTransfer]; [torrentToStart startTransfer];
[self applyFilter: nil];
[self updateUI: nil]; [self updateUI: nil];
[self applyFilter: nil];
[fInfoController updateInfoStatsAndSettings]; [fInfoController updateInfoStatsAndSettings];
[self updateTorrentHistory]; [self updateTorrentHistory];
} }
@ -1231,8 +1231,8 @@ static void sleepCallBack(void * controller, io_service_t y,
{ {
[self attemptToStartMultipleAuto: [notification object]]; [self attemptToStartMultipleAuto: [notification object]];
[self applyFilter: nil];
[self updateUI: nil]; [self updateUI: nil];
[self applyFilter: nil];
[fInfoController updateInfoStatsAndSettings]; [fInfoController updateInfoStatsAndSettings];
[self updateTorrentHistory]; [self updateTorrentHistory];
} }
@ -1241,8 +1241,8 @@ static void sleepCallBack(void * controller, io_service_t y,
{ {
[self attemptToStartMultipleAuto: fTorrents]; [self attemptToStartMultipleAuto: fTorrents];
[self applyFilter: nil];
[self updateUI: nil]; [self updateUI: nil];
[self applyFilter: nil];
[fInfoController updateInfoStatsAndSettings]; [fInfoController updateInfoStatsAndSettings];
[self updateTorrentHistory]; [self updateTorrentHistory];
} }