Fix window blocking during a call

This commit is contained in:
Hugo Posnic
2016-12-27 10:23:28 +01:00
parent c6022b4eb9
commit 9017a5f4b3
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ class ManjaroHello():
"""Event for differents actions."""
name = action.get_name()
if name == "install":
subprocess.call(["sudo", "-E", "calamares"])
subprocess.Popen(["sudo", "-E", "calamares"])
elif name == "autostart":
autostart = True if action.get_active() else False
self.set_autostart(autostart)