summaryrefslogtreecommitdiff
path: root/src/math-preferences.c
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-03-13 15:17:24 +0100
committermonsta <[email protected]>2018-03-14 22:04:38 +0300
commit59346cf80e2b5b1a94c61f331a23b3188bcb6a6a (patch)
tree8f5e0088375649d64a2f6845516a26d6b3db4827 /src/math-preferences.c
parent1fc2f2809d923db7964b799b3140b804908a989c (diff)
downloadmate-calc-59346cf80e2b5b1a94c61f331a23b3188bcb6a6a.tar.bz2
mate-calc-59346cf80e2b5b1a94c61f331a23b3188bcb6a6a.tar.xz
math-preferences: add window icon to Preferences dialog
Diffstat (limited to 'src/math-preferences.c')
-rw-r--r--src/math-preferences.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math-preferences.c b/src/math-preferences.c
index 13f5597..4fbb214 100644
--- a/src/math-preferences.c
+++ b/src/math-preferences.c
@@ -240,6 +240,9 @@ create_gui(MathPreferencesDialog *dialog)
gtk_dialog_add_button(GTK_DIALOG(dialog),
/* Icon name on close button in preferences dialog */
"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, "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);