diff -Nuar virt-manager-0.7.0.orig//src/virtManager/engine.py virt-manager-0.7.0//src/virtManager/engine.py --- virt-manager-0.7.0.orig//src/virtManager/engine.py 2009-03-09 21:38:37.000000000 -0600 +++ virt-manager-0.7.0//src/virtManager/engine.py 2009-04-17 11:48:12.000000000 -0600 @@ -33,7 +33,8 @@ from virtManager.manager import vmmManager from virtManager.details import vmmDetails from virtManager.asyncjob import vmmAsyncJob -from virtManager.create import vmmCreate +#from virtManager.create import vmmCreate +from vminstall.gtk.interface import VMCreate as vmmCreate from virtManager.host import vmmHost from virtManager.error import vmmErrorDialog import virtManager.util as util @@ -341,13 +342,24 @@ return False return True + def _vmmcreate_closing(self,signal,key): + self.windowCreate = None + def show_create(self, uri): if self.windowCreate == None: - create = vmmCreate(self.get_config(), self) + create = vmmCreate(virtman=True,key=0) create.connect("action-show-console", self._do_show_console) - create.connect("action-show-help", self._do_show_help) + create.connect("vmmcreate-closing", self._vmmcreate_closing) self.windowCreate = create - self.windowCreate.show(uri) + self.windowCreate.show() + else: + message_box = gtk.MessageDialog(None, + gtk.DIALOG_MODAL, + gtk.MESSAGE_WARNING, + gtk.BUTTONS_OK, + _("A new installation is already in progress.\n\nUse the YaST \"Create Virtual Machines\" utility for concurrent installations.")) + message_box.run() + message_box.destroy() def add_connection(self, uri, readOnly=None, autoconnect=False): conn = vmmConnection(self.get_config(), uri, readOnly)