summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/leap/gui/loggerwindow.py1
-rw-r--r--src/leap/gui/mainwindow.py2
-rw-r--r--src/leap/services/eip/vpnlaunchers.py9
3 files changed, 7 insertions, 5 deletions
diff --git a/src/leap/gui/loggerwindow.py b/src/leap/gui/loggerwindow.py
index dd724ac7..dc1e273d 100644
--- a/src/leap/gui/loggerwindow.py
+++ b/src/leap/gui/loggerwindow.py
@@ -78,6 +78,7 @@ class LoggerWindow(QtGui.QWidget):
"""
level = log[LeapLogHandler.RECORD_KEY].levelname
message = log[LeapLogHandler.MESSAGE_KEY]
+ message = message.replace('\n', '<br>\n')
if self._logs_to_display[level]:
self.ui.txtLogHistory.append(message)
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py
index 93a1eafa..7bcd54b0 100644
--- a/src/leap/gui/mainwindow.py
+++ b/src/leap/gui/mainwindow.py
@@ -548,7 +548,7 @@ class MainWindow(QtGui.QMainWindow):
systrayMenu.addAction(self.ui.action_quit)
self._systray = QtGui.QSystemTrayIcon(self)
self._systray.setContextMenu(systrayMenu)
- self._systray.setIcon(self._status_panel.ERROR_ICON)
+ self._systray.setIcon(self._status_panel.ERROR_ICON_TRAY)
self._systray.setVisible(True)
self._systray.activated.connect(self._tray_activated)
diff --git a/src/leap/services/eip/vpnlaunchers.py b/src/leap/services/eip/vpnlaunchers.py
index a1f7e4cf..116a8790 100644
--- a/src/leap/services/eip/vpnlaunchers.py
+++ b/src/leap/services/eip/vpnlaunchers.py
@@ -472,8 +472,8 @@ class DarwinVPNLauncher(VPNLauncher):
INSTALL_MSG = ("\"LEAP needs administrative privileges to install "
"missing scripts and fix permissions.\"")
- INSTALL_PATH = "/Applications/LEAP Client.app"
- INSTALL_PATH_ESCAPED = "/Applications/LEAP\ Client.app"
+ INSTALL_PATH = os.path.realpath(os.getcwd() + "/../../")
+ INSTALL_PATH_ESCAPED = os.path.realpath(os.getcwd() + "/../../")
OPENVPN_BIN = 'openvpn.leap'
OPENVPN_PATH = "%s/Contents/Resources/openvpn" % (INSTALL_PATH,)
OPENVPN_PATH_ESCAPED = "%s/Contents/Resources/openvpn" % (
@@ -620,12 +620,13 @@ class DarwinVPNLauncher(VPNLauncher):
if _has_updown_scripts(self.UP_SCRIPT):
args += [
- '--up', self.UP_SCRIPT,
+ '--up', '\"%s\"' % (self.UP_SCRIPT,),
]
if _has_updown_scripts(self.DOWN_SCRIPT):
args += [
- '--down', self.DOWN_SCRIPT]
+ '--down', '\"%s\"' % (self.DOWN_SCRIPT,)
+ ]
# should have the down script too
if _has_updown_scripts(self.OPENVPN_DOWN_PLUGIN):