From e970960ecfbca469b2dc1638ac3a26517291e722 Mon Sep 17 00:00:00 2001 From: hwspeedy Date: Tue, 9 Apr 2024 11:06:51 +0200 Subject: FIX note bgcolor changed to match hardinfo2 colors - Fixes #22 --- shell/shell.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/shell/shell.c b/shell/shell.c index 31434c43..816f2c41 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -360,9 +360,8 @@ static ShellNote *note_new(void) ShellNote *note; GtkWidget *hbox, *icon, *button; GtkWidget *border_box; - /* colors stolen from gtkinfobar.c */ - GdkColor info_default_border_color = { 0, 0xb800, 0xad00, 0x9d00 }; - GdkColor info_default_fill_color = { 0, 0xff00, 0xff00, 0xbf00 }; + GdkColor info_default_border_color = { 0, 0x0000, 0xad00, 0x9d00 }; + GdkColor info_default_fill_color = { 0, 0x0000, 0x0000, 0xbf00 }; note = g_new0(ShellNote, 1); note->label = gtk_label_new(""); -- cgit v1.2.3