diff --git a/core/img/default-app-icon.svg b/core/img/default-app-icon.svg new file mode 100644 index 0000000000..b6ae35211a --- /dev/null +++ b/core/img/default-app-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/settings/js/apps.js b/settings/js/apps.js index 3078e4fda3..b6f6363a99 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -153,6 +153,11 @@ OC.Settings.Apps = OC.Settings.Apps || { } app.firstExperimental = firstExperimental; + if (!app.preview) { + app.preview = OC.imagePath('core', 'default-app-icon'); + app.previewAsIcon = true; + } + var html = template(app); if (selector) { selector.html(html);