aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-04-09 11:06:51 +0200
committerhwspeedy <ns@bigbear.dk>2024-04-09 11:06:51 +0200
commite970960ecfbca469b2dc1638ac3a26517291e722 (patch)
treee12face49d853ab920d6c91dc1d32f6adddc938d
parentbdc849438d5d3b5314a8f70dbe220cc1c22cbb18 (diff)
FIX note bgcolor changed to match hardinfo2 colors - Fixes #22
-rw-r--r--shell/shell.c5
1 files 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("");