38 lines
1.0 KiB
Diff
38 lines
1.0 KiB
Diff
From e495941ce3f0f68490cbee0c66c0bbfd23fb4a77 Mon Sep 17 00:00:00 2001
|
|
From: yuanxing <yuanxing@kylinos.com.cn>
|
|
Date: Tue, 25 May 2021 15:24:35 +0800
|
|
Subject: [PATCH] fix(kiran theme):Remove the blue border when the mouse enters
|
|
the message box
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
- 当鼠标进入消息框时去掉蓝色边框效果
|
|
---
|
|
src/themes/kiran/kiran.c | 9 ---------
|
|
1 file changed, 9 deletions(-)
|
|
|
|
diff --git a/src/themes/kiran/kiran.c b/src/themes/kiran/kiran.c
|
|
index 732cb2e..7f6b9b1 100644
|
|
--- a/src/themes/kiran/kiran.c
|
|
+++ b/src/themes/kiran/kiran.c
|
|
@@ -321,15 +321,6 @@ paint_window_when_pointer_enter(GtkWidget *widget,
|
|
fill_background_when_pointer_enter(widget, windata, cr2);
|
|
cairo_fill(cr2);
|
|
|
|
- rounded_rectangle(cr2, 0, 0, windata->width, windata->height, 8);
|
|
- cairo_set_source_rgba(cr2,
|
|
- 40 / 255.0,
|
|
- 144 / 255.0,
|
|
- 216 / 255.0,
|
|
- 1.0);
|
|
- cairo_set_line_width(cr2, 4.0);
|
|
- cairo_stroke(cr2);
|
|
-
|
|
cairo_destroy(cr2);
|
|
|
|
cairo_save(cr);
|
|
--
|
|
2.27.0
|
|
|