summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/properties.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index d3fac59bde..dcd3d89edf 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -321,8 +321,6 @@ enum plugin_status plugin_start(const void* parameter)
321 rb->action_userabort(TIMEOUT_BLOCK); 321 rb->action_userabort(TIMEOUT_BLOCK);
322 return PLUGIN_OK; 322 return PLUGIN_OK;
323 } 323 }
324 FOR_NB_SCREENS(i)
325 rb->viewportmanager_theme_enable(i, true, NULL);
326 324
327 if (props_type == PROPS_MUL_ID3) 325 if (props_type == PROPS_MUL_ID3)
328 ret = assemble_track_info(NULL, NULL); 326 ret = assemble_track_info(NULL, NULL);
@@ -349,8 +347,5 @@ enum plugin_status plugin_start(const void* parameter)
349 rb->browse_id3(&id3, 0, 0, NULL, mul_id3_count) : 347 rb->browse_id3(&id3, 0, 0, NULL, mul_id3_count) :
350 (stats.canceled ? 0 : -1); 348 (stats.canceled ? 0 : -1);
351 349
352 FOR_NB_SCREENS(i)
353 rb->viewportmanager_theme_undo(i, false);
354
355 return ret == -1 ? PLUGIN_ERROR : ret == 1 ? PLUGIN_USB_CONNECTED : PLUGIN_OK; 350 return ret == -1 ? PLUGIN_ERROR : ret == 1 ? PLUGIN_USB_CONNECTED : PLUGIN_OK;
356} 351}