From: Joshua Lock Date: Fri, 25 Feb 2011 18:57:10 +0000 (+0000) Subject: bitbake/hob: only show one progress dialog when changing machine X-Git-Tag: 2011-1~2225 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fd84dc47d353a6333470d0ca8175a3e2555d1ee8;p=openembedded-core.git bitbake/hob: only show one progress dialog when changing machine Remove a spurious signal emission which resulted in two progress dialogs being shown after changing the machine. Signed-off-by: Joshua Lock --- diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 699354c610..84f304352e 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py @@ -123,7 +123,6 @@ class HobHandler(gobject.GObject): def set_machine(self, machine): self.server.runCommand(["setVariable", "MACHINE", machine]) self.current_command = "findConfigFilesMachine" - self.emit("generating-data") self.run_next_command() def set_distro(self, distro):