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

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-09-19 23:13:18 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-09-19 23:13:18 +0300
commitec4cf69aa91456777137d1c85501b25679f8f0fa (patch)
treec9f39e3a37f87bf2d439e1a4a7887c18f6781a49 /Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
parent58264f84ff40a70425ad8cc77cc983f663ba31ff (diff)
Now using RUMPS as the default trayicon framework for OSX
Diffstat (limited to 'Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs')
-rw-r--r--Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
index 8c7c0ed68..921af0fc7 100644
--- a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
+++ b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Program.cs
@@ -30,14 +30,9 @@ namespace Duplicati.GUI.TrayIcon
private static string GetDefaultToolKit(bool printwarnings)
{
-
+ // No longer using Cocoa directly as it fails on 32bit as well
if (Duplicati.Library.Utility.Utility.IsClientOSX)
- {
- if (Environment.Is64BitProcess)
return TOOLKIT_RUMPS;
- else
- return TOOLKIT_COCOA;
- }
#if __MonoCS__ || __WindowsGTK__
if (Duplicati.Library.Utility.Utility.IsClientLinux)