summaryrefslogtreecommitdiffstats
path: root/src/gui-gtk/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui-gtk/main.c')
-rw-r--r--src/gui-gtk/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui-gtk/main.c b/src/gui-gtk/main.c
index 4602012c..b3f6bdc2 100644
--- a/src/gui-gtk/main.c
+++ b/src/gui-gtk/main.c
@@ -147,6 +147,11 @@ int main(int argc, char **argv)
textdomain(PACKAGE);
#endif
+ /* without this the name is set to argv[0] which confuses
+ * desktops which uses the name to find the corresponding .desktop file
+ * trac#180
+ */
+ g_set_prgname("abrt");
gtk_init(&argc, &argv);
char *env_verbose = getenv("ABRT_VERBOSE");