Skip to content

Commit

Permalink
examples: Use existing icons
Browse files Browse the repository at this point in the history
The sunny icon doesn't exist anymore.
  • Loading branch information
Matthias Clasen committed Jun 16, 2021
1 parent ece9e7e commit 43eeff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sunny.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ new_window (GApplication *app,
gtk_application_window_set_show_menubar (GTK_APPLICATION_WINDOW (window), TRUE);
gtk_window_set_default_size ((GtkWindow*)window, 640, 480);
gtk_window_set_title (GTK_WINDOW (window), "Sunny");
gtk_window_set_icon_name (GTK_WINDOW (window), "sunny");
gtk_window_set_icon_name (GTK_WINDOW (window), "weather-clear-symbolic");

header = gtk_header_bar_new ();
gtk_window_set_titlebar (GTK_WINDOW (window), header);
Expand Down Expand Up @@ -78,7 +78,7 @@ show_about (GSimpleAction *action,
gtk_show_about_dialog (NULL,
"program-name", "Sunny",
"title", "About Sunny",
"logo-icon-name", "sunny",
"logo-icon-name", "weather-clear-symbolic",
"comments", "A cheap Bloatpad clone.",
NULL);
}
Expand Down

0 comments on commit 43eeff8

Please sign in to comment.