Fix window blocking during a call

merge-requests/64/head
Hugo Posnic 2016-12-27 10:23:28 +01:00
parent c6022b4eb9
commit 9017a5f4b3
2 changed files with 1 additions and 2 deletions

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)

View File

@ -5,7 +5,6 @@
<object class="GtkAboutDialog" id="aboutdialog">
<property name="can_focus">False</property>
<property name="title" translatable="yes">About</property>
<property name="modal">True</property>
<property name="type_hint">dialog</property>
<property name="program_name">Manjaro Hello</property>
<property name="version">0.3.1</property>