diff options
Diffstat (limited to '0001-Let-the-notification-icon-use-the-size-specified-by-.patch')
-rw-r--r-- | 0001-Let-the-notification-icon-use-the-size-specified-by-.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/0001-Let-the-notification-icon-use-the-size-specified-by-.patch b/0001-Let-the-notification-icon-use-the-size-specified-by-.patch new file mode 100644 index 0000000..68ea6a3 --- /dev/null +++ b/0001-Let-the-notification-icon-use-the-size-specified-by-.patch @@ -0,0 +1,56 @@ +From eeed7eb54ab7c2b462ebc9237cd8cd55af081f53 Mon Sep 17 00:00:00 2001 +From: wangxiaoqing <wangxiaoqing@kylinsec.com.cn> +Date: Mon, 1 Aug 2022 10:26:35 +0800 +Subject: [PATCH] Let the notification icon use the size specified by the tray + to draw +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +- 让通知图标使用托盘指定的图标大小进行绘制, 避免造成图标过大 + Related #I5HAM8 + +Signed-off-by: wangxiaoqing <wangxiaoqing@kylinsec.com.cn> +--- + gtk/deprecated/gtkstatusicon.c | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +diff --git a/gtk/deprecated/gtkstatusicon.c b/gtk/deprecated/gtkstatusicon.c +index 52239b1..8b0cbc8 100644 +--- a/gtk/deprecated/gtkstatusicon.c ++++ b/gtk/deprecated/gtkstatusicon.c +@@ -1401,7 +1401,6 @@ gtk_status_icon_update_image (GtkStatusIcon *status_icon) + #ifndef GDK_WINDOWING_X11 + GdkPixbuf *pixbuf; + #endif +- gint round_size; + gint scale; + + #ifdef GDK_WINDOWING_X11 +@@ -1415,13 +1414,11 @@ gtk_status_icon_update_image (GtkStatusIcon *status_icon) + if (widget == NULL) + return; + +- round_size = round_pixel_size (widget, priv->size); +- + icon_helper = gtk_icon_helper_new (gtk_style_context_get_node (gtk_widget_get_style_context (widget)), widget); + _gtk_icon_helper_set_force_scale_pixbuf (icon_helper, TRUE); + _gtk_icon_helper_set_definition (icon_helper, priv->image_def); + _gtk_icon_helper_set_icon_size (icon_helper, GTK_ICON_SIZE_SMALL_TOOLBAR); +- _gtk_icon_helper_set_pixel_size (icon_helper, round_size); ++ _gtk_icon_helper_set_pixel_size (icon_helper, gtk_image_get_pixel_size (GTK_IMAGE (priv->image))); + surface = gtk_icon_helper_load_surface (icon_helper, scale); + + g_object_unref (icon_helper); +@@ -1567,6 +1564,8 @@ gtk_status_icon_icon_size_changed (GtkStatusIcon *status_icon) + gtk_image_set_pixel_size (GTK_IMAGE (priv->image), icon_size); + else + gtk_image_set_pixel_size (GTK_IMAGE (priv->image), -1); ++ ++ gtk_status_icon_update_image (status_icon); + } + + static void +-- +2.36.1 + |