summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-02-18 13:21:07 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-02-18 13:21:07 +0000
commit860d326a9ac03c2b1e0a3f45c3ed3d35f94c3d54 (patch)
tree709d834bb7c59cbaf84fd7484aac3a67ed224e5c /src/main.cpp
parentFix bug 1665595 and prevent other LPE the same bug when using ACTIVE_DOCUMENT (diff)
downloadinkscape-860d326a9ac03c2b1e0a3f45c3ed3d35f94c3d54.tar.gz
inkscape-860d326a9ac03c2b1e0a3f45c3ed3d35f94c3d54.zip
Disable GTK3 "client side decorations" on Windows by setting "GTK_CSD=0"
They are not used by Inkscape and prevent native theming to be used for window borders and titles. See also https://bugzilla.gnome.org/show_bug.cgi?id=778791 (bzr r15531)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 47cf43456..8be9e2e44 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -691,18 +691,22 @@ main(int argc, char **argv)
RegistryTool rt;
rt.setPathInfo();
}
-#elif defined(ENABLE_NLS)
-# ifdef ENABLE_BINRELOC
+
+ // disable "client side decorations" as they prevent window borders and titlebars to be drawn with native theming
+ // see also https://bugzilla.gnome.org/show_bug.cgi?id=778791
+ g_setenv("GTK_CSD", "0", FALSE);
+#endif
+
+#ifdef ENABLE_NLS
+# ifndef WIN32
+# ifdef ENABLE_BINRELOC
bindtextdomain(GETTEXT_PACKAGE, BR_LOCALEDIR(""));
-# else
+# else
bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
// needed by Python/Gettext
g_setenv("PACKAGE_LOCALE_DIR", PACKAGE_LOCALE_DIR, TRUE);
+# endif
# endif
-#endif
-
- // the bit below compiles regardless of platform
-#ifdef ENABLE_NLS
// Allow the user to override the locale directory by setting
// the environment variable INKSCAPE_LOCALEDIR.
char const *inkscape_localedir = g_getenv("INKSCAPE_LOCALEDIR");