From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qjtql-0006k7-8S for garchives@archives.gentoo.org; Thu, 21 Jul 2011 14:03:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7236021C29C; Thu, 21 Jul 2011 14:03:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 438CD21C29C for ; Thu, 21 Jul 2011 14:03:30 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BAA8A64242 for ; Thu, 21 Jul 2011 14:03:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 2BB0B8003D for ; Thu, 21 Jul 2011 14:03:29 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: Subject: [gentoo-commits] proj/anaconda:master commit in: / X-VCS-Repository: proj/anaconda X-VCS-Files: gui.py X-VCS-Directories: / X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: aacdbf6e8d53c284cf139d143c410c7e9421cb71 Date: Thu, 21 Jul 2011 14:03:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 29901d7d4dfff3c1c164a06bf4463f69 commit: aacdbf6e8d53c284cf139d143c410c7e9421cb71 Author: wiktor w brodlo brodlo net> AuthorDate: Thu Jul 21 14:03:06 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Thu Jul 21 14:03:06 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3Daacdbf6e gui.py: remove the code that removes the header banner --- gui.py | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/gui.py b/gui.py index 6ec72da..b2a8b44 100755 --- a/gui.py +++ b/gui.py @@ -1454,20 +1454,12 @@ class InstallControlWindow: if (gtk.gdk.screen_height() < 600) or \ (gtk.gdk.screen_height() <=3D 675 and flags.livecdInstal= l) or \ getattr(self.anaconda, "fullScreen", False): - i.hide() self.window.set_resizable(True) self.window.set_size_request(-1, -1) self.window.fullscreen() else: self.window.set_size_request(800, 600) - # if we're running in the live mode and the dpi is something= weird, - # give ourselves as much space as we can. this gets things = to fit - # with a dpi of up to 147 - if flags.livecdInstall: - i.hide() - else: - self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DESKT= OP) - + =20 if flags.debug: self.mainxml.get_widget("debugButton").show_now() self.installFrame =3D self.mainxml.get_widget("installFrame")