From patchwork Thu Mar 29 00:30:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 2/6] lib/bb/ui/crumbs/imageconfigurationpage: add extra space between widgets Date: Thu, 29 Mar 2012 00:30:23 -0000 From: Joshua Lock X-Patchwork-Id: 24775 Message-Id: <89c6156bc28beee2df9d04165f46b743462987af.1332980606.git.josh@linux.intel.com> To: bitbake-devel@lists.openembedded.org Add space between the target machine combo and the 'Layers' button. Signed-off-by: Joshua Lock --- lib/bb/ui/crumbs/imageconfigurationpage.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/bb/ui/crumbs/imageconfigurationpage.py b/lib/bb/ui/crumbs/imageconfigurationpage.py index d7437a9..f66bcd6 100644 --- a/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/lib/bb/ui/crumbs/imageconfigurationpage.py @@ -171,7 +171,7 @@ class ImageConfigurationPage (HobPage): self.gtable.attach(self.machine_title, 0, 40, 0, 4) self.gtable.attach(self.machine_title_desc, 0, 40, 4, 6) self.gtable.attach(self.machine_combo, 0, 12, 6, 9) - self.gtable.attach(self.layer_button, 12, 36, 6, 11) + self.gtable.attach(self.layer_button, 15, 36, 6, 11) self.gtable.attach(self.layer_info_icon, 36, 40, 6, 10) if show_progress_bar: self.gtable.attach(self.progress_box, 0, 40, 13, 17)