summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-03-24 18:34:42 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-03-24 18:34:42 +0000
commitb4d274cb3217f73bbfecd5984def86efe1cd62da (patch)
tree9ca1a9efe6815101255c6cdeaa6972a1645ca9a8
parentExtensions/Filters: Fix translations of submenu names (diff)
downloadinkscape-b4d274cb3217f73bbfecd5984def86efe1cd62da.tar.gz
inkscape-b4d274cb3217f73bbfecd5984def86efe1cd62da.zip
About dialog: Fix icon file location
(was renamed in deeb288fc38e09fba325741afb2c66f693438f9b)
-rw-r--r--src/inkscape-application.cpp2
-rw-r--r--src/ui/dialog/aboutbox.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/inkscape-application.cpp b/src/inkscape-application.cpp
index e88dba707..3ab60caa3 100644
--- a/src/inkscape-application.cpp
+++ b/src/inkscape-application.cpp
@@ -569,7 +569,7 @@ ConcreteInkscapeApplication<Gtk::Application>::on_startup2()
add_action("quit", sigc::mem_fun(*this, &InkscapeApplication::on_quit ));
// ========================= GUI Init =========================
- Gtk::Window::set_default_icon_name("inkscape");
+ Gtk::Window::set_default_icon_name("org.inkscape.Inkscape");
Inkscape::UI::Widget::Panel::prep();
// ========================= Builder ==========================
diff --git a/src/ui/dialog/aboutbox.cpp b/src/ui/dialog/aboutbox.cpp
index 3db65411a..e829091cb 100644
--- a/src/ui/dialog/aboutbox.cpp
+++ b/src/ui/dialog/aboutbox.cpp
@@ -83,7 +83,7 @@ AboutBox::AboutBox()
// clang-format off
set_program_name ( "Inkscape");
set_version ( Inkscape::version_string);
- set_logo_icon_name( INKSCAPE_ICON("inkscape"));
+ set_logo_icon_name( INKSCAPE_ICON("org.inkscape.Inkscape"));
set_website ( "https://www.inkscape.org");
set_website_label (_("Inkscape website"));
set_license_type (Gtk::LICENSE_GPL_3_0);