Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/gtk/css_config.py')
-rw-r--r--gajim/gtk/css_config.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/gajim/gtk/css_config.py b/gajim/gtk/css_config.py
index fe27be51e..a83b9d273 100644
--- a/gajim/gtk/css_config.py
+++ b/gajim/gtk/css_config.py
@@ -36,7 +36,11 @@ from gajim.common import app
from gajim.common import configpaths
from gajim.common.const import CSSPriority
from gajim.common.const import StyleAttr
-from gajim.common.dbus.system_style import SystemStyleListener
+
+if sys.platform == 'win32':
+ from gajim.common.winapi.system_style import SystemStyleListener
+else:
+ from gajim.common.dbus.system_style import SystemStyleListener
from gajim.gtk.const import Theme