aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2018-03-12 18:28:31 -0500
committerLeandro A. F. Pereira <leandro@hardinfo.org>2018-03-12 16:33:34 -0700
commit600ef9404f3f2b287d1bfef53b97263087c199a2 (patch)
tree52b4e6c8f34cd2cc8b7396cb6dc0737ae9b7e6bb /shell
parent6f0a3e0f85fd439fabfc1b8f64b01d93151cff3c (diff)
shell: fix hardinfo window icon
Fix small typo in 1906d3027dc3ad8b9b5533712299d48e265c852c Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/shell.c b/shell/shell.c
index 10c74d13..9918db34 100644
--- a/shell/shell.c
+++ b/shell/shell.c
@@ -416,7 +416,7 @@ static void create_window(void)
shell->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_icon(GTK_WINDOW(shell->window),
- icon_cache_get_pixbuf("hardinfo.org"));
+ icon_cache_get_pixbuf("hardinfo.png"));
shell_set_title(shell, NULL);
gtk_window_set_default_size(GTK_WINDOW(shell->window), 800, 600);
g_signal_connect(G_OBJECT(shell->window), "destroy", destroy_me, NULL);