From 8a5bf073be9e5a504c8ba38be2423ef01efa925c Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Tue, 22 Oct 2013 18:10:14 +0000 Subject: [PATCH] fixed: Option not supported on Linux: --enable-drag-drop --- src/gui/src/MainWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/src/MainWindow.cpp b/src/gui/src/MainWindow.cpp index 2dd4196d..f25cf11f 100644 --- a/src/gui/src/MainWindow.cpp +++ b/src/gui/src/MainWindow.cpp @@ -401,10 +401,12 @@ void MainWindow::startSynergy() #endif } +#ifndef Q_OS_LINUX if (appConfig().isPremium()) { args << "--enable-drag-drop"; } +#endif if ((synergyType() == synergyClient && !clientArgs(args, app)) || (synergyType() == synergyServer && !serverArgs(args, app)))