!38 修复托盘区域电池图标过大,与其他图标不协调
From: @wangxiaoqing987 Reviewed-by: @weidongkl, @dwl301 Signed-off-by: @dwl301
This commit is contained in:
commit
0464ed67d6
@ -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
|
||||
|
||||
@ -14,12 +14,14 @@
|
||||
#Basic Information
|
||||
Name: gtk3
|
||||
Version: 3.24.34
|
||||
Release: 2
|
||||
Release: 3
|
||||
Summary: GTK+ graphical user interface library
|
||||
License: LGPLv2+
|
||||
URL: http://www.gtk.org
|
||||
Source0: http://download.gnome.org/sources/gtk+/3.24/gtk+-%{version}.tar.xz
|
||||
|
||||
Patch0: 0001-Let-the-notification-icon-use-the-size-specified-by-.patch
|
||||
|
||||
#Dependency
|
||||
BuildRequires: pkgconfig(atk) >= %{atk_version} pkgconfig(atk-bridge-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} pkgconfig(gobject-introspection-1.0)
|
||||
@ -262,6 +264,9 @@ gtk-query-immodules-3.0-64 --update-cache &>/dev/null || :
|
||||
%{_mandir}/man1/gtk3-widget-factory.1*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 28 2022 wangxiaoqing <wangxiaoqing@kylinsec.com.cn> - 3.24.34-3
|
||||
- Let the notification icon use the size specified by the tray
|
||||
|
||||
* Mon Jun 20 2022 lin zhang <lin.zhang@turbolinux.com.cn> - 3.24.34-2
|
||||
- remove meson option wayland-backend
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user