34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From b2dc162c8ebaea927582a423b7467fd00023ab98 Mon Sep 17 00:00:00 2001
|
|
From: wangxiaoqing <wangxiaoqing@kylinsec.com.cn>
|
|
Date: Tue, 30 Aug 2022 11:22:55 +0800
|
|
Subject: [PATCH] fix(tray):Fix the icon location error when system resolution
|
|
change
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
- 修复托盘区域获取托盘位置图标,更改分辨率后错误问题
|
|
Releated #I5O77O
|
|
|
|
Signed-off-by: wangxiaoqing <wangxiaoqing@kylinsec.com.cn>
|
|
---
|
|
src/tray/kiran-tray.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/tray/kiran-tray.c b/src/tray/kiran-tray.c
|
|
index 2e7d1b9..c169a1e 100644
|
|
--- a/src/tray/kiran-tray.c
|
|
+++ b/src/tray/kiran-tray.c
|
|
@@ -992,7 +992,7 @@ get_widget_geometry(GtkWidget *widget)
|
|
{
|
|
window = gtk_widget_get_window(parent);
|
|
{
|
|
- gdk_window_get_position(window, &x, &y);
|
|
+ gdk_window_get_origin(window, &x, &y);
|
|
}
|
|
parent = gtk_widget_get_parent(parent);
|
|
}
|
|
--
|
|
2.36.1
|
|
|