summaryrefslogtreecommitdiff
path: root/src/gui_gtk.cc
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-07-29 21:07:33 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-07-29 21:07:33 +0200
commit515d3585850f8d4a354fb420f5f4fa5e04886c6b (patch)
tree6ade271e3f2db89af8f44fbb204a6b484011f6ff /src/gui_gtk.cc
parentbf94c218bf40520d855efccd27376646d588c09d (diff)
Use icon for GTK about dialog
Diffstat (limited to 'src/gui_gtk.cc')
-rw-r--r--src/gui_gtk.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui_gtk.cc b/src/gui_gtk.cc
index e80a249..7edd58c 100644
--- a/src/gui_gtk.cc
+++ b/src/gui_gtk.cc
@@ -928,6 +928,7 @@ public:
for (auto const& str : tmp) tmp2.push_back(str.c_str());
tmp2.push_back(nullptr);
gtk_about_dialog_set_authors(about_, tmp2.data());
+ gtk_about_dialog_set_logo_icon_name(about_, "tp-monitor");
g_signal_connect(about_, "delete-event",
G_CALLBACK(gtk_widget_hide_on_delete), nullptr);