diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index e13d5f7b9..ed616e855 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -1376,12 +1376,12 @@ class FolderView extends BaseAppView { }); layout.hookup_style(icon); let subSize = Math.floor(FOLDER_SUBICON_FRACTION * size); - let scale = St.ThemeContext.get_for_stage(global.stage).scale_factor; let numItems = this._orderedItems.length; let rtl = icon.get_text_direction() == Clutter.TextDirection.RTL; for (let i = 0; i < 4; i++) { - let bin = new St.Bin({ width: subSize * scale, height: subSize * scale }); + const style = 'width: %dpx; height: %dpx;'.format(subSize, subSize); + let bin = new St.Bin({ style }); if (i < numItems) bin.child = this._orderedItems[i].app.create_icon_texture(subSize); layout.attach(bin, rtl ? (i + 1) % 2 : i % 2, Math.floor(i / 2), 1, 1);