[gnome-shell-extensions/wip/rstrode/heads-up-display: 18/62] apps-menu: Add drop-shadow to application icons




commit 47c03b81d31100196c8f61f8a5f5455221d74e87
Author: Florian Müllner <fmuellner gnome org>
Date:   Thu Jul 18 00:39:49 2019 +0200

    apps-menu: Add drop-shadow to application icons
    
    ... to make sure they are readable on light backgrounds.
    
    https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/168

 extensions/apps-menu/extension.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
index cc399c6..1f95c16 100644
--- a/extensions/apps-menu/extension.js
+++ b/extensions/apps-menu/extension.js
@@ -103,7 +103,9 @@ class ApplicationMenuItem extends PopupMenu.PopupBaseMenuItem {
     }
 
     _updateIcon() {
-        this._iconBin.set_child(this.getDragActor());
+        let icon = this.getDragActor();
+        icon.style_class = 'icon-dropshadow';
+        this._iconBin.set_child(icon);
     }
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]