From patchwork Wed Feb 29 14:15:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 29/32] Hob(crumbs/builder.py): adjust the main window's position and ignore the case lower than 1024x768. Date: Wed, 29 Feb 2012 14:15:26 -0000 From: Shane Wang X-Patchwork-Id: 22477 Message-Id: To: bitbake-devel@lists.openembedded.org * don't set the position of the main window to the center always * don't show the message to users if their screen dimensions are lower than 1024x768 Signed-off-by: Shane Wang Signed-off-by: Joshua Lock --- bitbake/lib/bb/ui/crumbs/builder.py | 8 -------- 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index e9853f2..f41b6a4 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -229,20 +229,12 @@ class Builder(gtk.Window): def create_visual_elements(self): self.set_title("Hob - Image Creator") self.set_icon_name("applications-development") - self.set_position(gtk.WIN_POS_CENTER_ALWAYS) self.set_resizable(True) window_width = self.get_screen().get_width() window_height = self.get_screen().get_height() if window_width >= hwc.MAIN_WIN_WIDTH: window_width = hwc.MAIN_WIN_WIDTH window_height = hwc.MAIN_WIN_HEIGHT - else: - lbl = "Screen dimension mismatched\nfor better usability and visual effects," - lbl = lbl + " the screen dimension should be 1024x768 or above." - dialog = CrumbsMessageDialog(self, lbl, gtk.STOCK_DIALOG_INFO) - dialog.add_button(gtk.STOCK_OK, gtk.RESPONSE_OK) - dialog.run() - dialog.destroy() self.set_size_request(window_width, window_height) self.vbox = gtk.VBox(False, 0)