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 'src/gtkgui_helpers.py')
-rw-r--r--src/gtkgui_helpers.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gtkgui_helpers.py b/src/gtkgui_helpers.py
index 78de6a79d..6bc792a85 100644
--- a/src/gtkgui_helpers.py
+++ b/src/gtkgui_helpers.py
@@ -190,8 +190,6 @@ def autodetect_browser_mailer():
gajim.config.set('openwith', 'kfmclient exec')
elif user_runs_xfce():
gajim.config.set('openwith', 'exo-open')
- elif user_runs_osx():
- gajim.config.set('openwith', 'open')
else:
gajim.config.set('openwith', 'custom')
@@ -207,9 +205,6 @@ def user_runs_xfce():
return True
return False
-def user_runs_osx():
- return sys.platform == 'darwin'
-
def get_running_processes():
'''returns running processes or None (if not /proc exists)'''
if os.path.isdir('/proc'):