From cd743f4ff3953eaba93cb413e6ebc4bc4007e571 Mon Sep 17 00:00:00 2001 From: Alexander Kojevnikov Date: Mon, 3 Sep 2012 17:24:01 -0700 Subject: [PATCH] Show icon in the About dialogue --- src/spek-window.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/spek-window.cc b/src/spek-window.cc index 93d3354..878b8bd 100644 --- a/src/spek-window.cc +++ b/src/spek-window.cc @@ -307,8 +307,7 @@ void SpekWindow::on_about(wxCommandEvent& event) info.SetDescription(this->description); #ifdef OS_UNIX info.SetWebSite(wxT("http://spek-project.org/"), _("Spek Website")); - // TODO - // info.SetIcon(); + info.SetIcon(wxArtProvider::GetIcon(wxT("spek"), wxART_OTHER, wxSize(128, 128))); #endif wxAboutBox(info); }