From 7ee14c19940100143f930e5d19bf45e6af140f01 Mon Sep 17 00:00:00 2001 From: Shane Wang Date: Wed, 29 Feb 2012 22:15:26 +0800 Subject: Hob(crumbs/builder.py): adjust the main window's position and ignore the case lower than 1024x768. * 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 (Bitbake rev: 1afa500cb1cb5c10fc0a3ea0f65c7ecc8887efa8) Signed-off-by: Shane Wang Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/builder.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'bitbake/lib/bb/ui/crumbs/builder.py') diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 630e7b87a2..1d012f937e 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -223,20 +223,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) -- cgit v1.2.3-54-g00ecf