From: Shane Wang Date: Wed, 29 Feb 2012 14:15:26 +0000 (+0800) Subject: Hob(crumbs/builder.py): adjust the main window's position and ignore the case lower... X-Git-Tag: rev_ivi_2015_02_04~18504 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b15dd1f31c97618e9cae04e8c2dddcdbb5606a1;p=scm%2Fbb%2Ftizen-distro.git 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 --- diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index 630e7b8..1d012f9 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)