[gnome-shell/gbsneto/fix-icon-scale] iconGrid: Downscale icon size when comparing to defaults



commit c1d42ecd14b375d9ccae90aa75ec7234f17d4d84
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date:   Fri Apr 3 15:28:57 2020 -0300

    iconGrid: Downscale icon size when comparing to defaults
    
    The return value of st_theme_node_lookup_length() is scaled according
    to the scale factor. IconGrid.ICON_SIZE is not. However, when BaseIcon
    tries to fetch the CSS value for "icon-size" (which returns a scaled
    value), it uses it as-is, mixing the two coordinate systems.
    
    Use a single coordinate system (unscaled sizes) in IconGrid.BaseIcon.

 js/ui/iconGrid.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js
index 25cd140992..69c3fa52d4 100644
--- a/js/ui/iconGrid.js
+++ b/js/ui/iconGrid.js
@@ -114,8 +114,11 @@ class BaseIcon extends St.Bin {
         if (this._setSizeManually) {
             size = this.iconSize;
         } else {
+            const { scaleFactor } =
+                St.ThemeContext.get_for_stage(global.stage);
+
             let [found, len] = node.lookup_length('icon-size', false);
-            size = found ? len : ICON_SIZE;
+            size = found ? len / scaleFactor : ICON_SIZE;
         }
 
         if (this.iconSize == size && this._iconBin.child)


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