| Submitter | Dongxiao Xu |
|---|---|
| Date | April 1, 2012, 12:14 p.m. |
| Message ID | <dc96fdc4026eba1abcef827cc11d4b37699ea54c.1333269705.git.dongxiao.xu@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/25011/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/ui/crumbs/imagedetailspage.py b/lib/bb/ui/crumbs/imagedetailspage.py index b70440d..b12014a 100755 --- a/lib/bb/ui/crumbs/imagedetailspage.py +++ b/lib/bb/ui/crumbs/imagedetailspage.py @@ -403,7 +403,6 @@ class ImageDetailsPage (HobPage): response, path = self.builder.show_load_template_dialog() if not response: return - self.builder.initiate_new_build() if path: self.builder.load_template(path) @@ -415,6 +414,5 @@ class ImageDetailsPage (HobPage): response, settings_changed = self.builder.show_adv_settings_dialog() if not response: return - self.builder.initiate_new_build() if settings_changed: self.builder.reparse_post_adv_settings()
initiate_new_build() function is in async mode and could not be called before another async function. Also we could not initialize the build if user simply change a setting, therefore remove this function. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/ui/crumbs/imagedetailspage.py | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)