diff options
author | lukefromdc <[email protected]> | 2018-03-20 22:02:48 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2018-03-20 22:02:48 -0400 |
commit | 0b15ea1f6d218cc2a850bef3f0cb98d303c63bc3 (patch) | |
tree | bba116cfd9d1eafd505519762837d40fa4725e3d /applets/notification_area/system-tray/na-tray.c | |
parent | ff04f332136272a14c588da3f2d582ba0ff01be1 (diff) | |
download | mate-panel-0b15ea1f6d218cc2a850bef3f0cb98d303c63bc3.tar.bz2 mate-panel-0b15ea1f6d218cc2a850bef3f0cb98d303c63bc3.tar.xz |
hidpi: fix tray icon spacing with window-scaling > 1
Diffstat (limited to 'applets/notification_area/system-tray/na-tray.c')
-rw-r--r-- | applets/notification_area/system-tray/na-tray.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/notification_area/system-tray/na-tray.c b/applets/notification_area/system-tray/na-tray.c index 94fe6911..621d534d 100644 --- a/applets/notification_area/system-tray/na-tray.c +++ b/applets/notification_area/system-tray/na-tray.c @@ -127,7 +127,8 @@ tray_added (NaTrayManager *manager, na_host_emit_item_added (NA_HOST (tray), NA_ITEM (icon)); - gtk_widget_show (GTK_WIDGET (icon)); + /*Does not seem to be needed anymore and can cause a render issue with hidpi*/ + /*gtk_widget_show (GTK_WIDGET (icon));*/ } static void |