Skip to content

Commit

Permalink
math-preferences: add window icon to Preferences dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Mar 13, 2018
1 parent e29978c commit fceb9a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/math-preferences.c
Expand Up @@ -240,6 +240,9 @@ create_gui(MathPreferencesDialog *dialog)
gtk_dialog_add_button(GTK_DIALOG(dialog), gtk_dialog_add_button(GTK_DIALOG(dialog),
/* Icon name on close button in preferences dialog */ /* Icon name on close button in preferences dialog */
"gtk-close", GTK_RESPONSE_CLOSE); "gtk-close", GTK_RESPONSE_CLOSE);

gtk_window_set_icon_name (GTK_WINDOW(dialog), "accessories-calculator");

g_signal_connect(dialog, "response", G_CALLBACK(preferences_response_cb), NULL); g_signal_connect(dialog, "response", G_CALLBACK(preferences_response_cb), NULL);
g_signal_connect(dialog, "delete-event", G_CALLBACK(preferences_dialog_delete_cb), NULL); g_signal_connect(dialog, "delete-event", G_CALLBACK(preferences_dialog_delete_cb), NULL);
gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), GET_WIDGET(dialog->priv->ui, "preferences_table"), TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), GET_WIDGET(dialog->priv->ui, "preferences_table"), TRUE, TRUE, 0);
Expand Down

0 comments on commit fceb9a7

Please sign in to comment.