diff options
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -241,6 +241,7 @@ static int run_App_(iApp *d) { | |||
241 | runTickers_App_(d); | 241 | runTickers_App_(d); |
242 | processEvents_App(waitForNewEvents_AppEventMode); | 242 | processEvents_App(waitForNewEvents_AppEventMode); |
243 | refresh_App(); | 243 | refresh_App(); |
244 | recycle_Garbage(); | ||
244 | } | 245 | } |
245 | return 0; | 246 | return 0; |
246 | } | 247 | } |
@@ -249,7 +250,6 @@ void refresh_App(void) { | |||
249 | iApp *d = &app_; | 250 | iApp *d = &app_; |
250 | destroyPending_Widget(); | 251 | destroyPending_Widget(); |
251 | draw_Window(d->window); | 252 | draw_Window(d->window); |
252 | recycle_Garbage(); | ||
253 | d->pendingRefresh = iFalse; | 253 | d->pendingRefresh = iFalse; |
254 | } | 254 | } |
255 | 255 | ||