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 1QZ0Ik-0005Ha-T8 for garchives@archives.gentoo.org; Tue, 21 Jun 2011 12:43:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 850831C092; Tue, 21 Jun 2011 12:43:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 53A2F1C092 for ; Tue, 21 Jun 2011 12:43:23 +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 B84132AC017 for ; Tue, 21 Jun 2011 12:43:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1400F8003C for ; Tue, 21 Jun 2011 12:43:22 +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: <2c35ce0e48426389da708ed9dc41e0da53477c69.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: iw/ X-VCS-Repository: proj/anaconda X-VCS-Files: iw/progress_gui.py X-VCS-Directories: iw/ X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 2c35ce0e48426389da708ed9dc41e0da53477c69 Date: Tue, 21 Jun 2011 12:43:22 +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: e073a88b957b8684c41717428791da80 commit: 2c35ce0e48426389da708ed9dc41e0da53477c69 Author: wiktor w brodlo brodlo net> AuthorDate: Tue Jun 21 12:43:04 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Tue Jun 21 12:43:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D2c35ce0e Back to adpix --- iw/progress_gui.py | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/iw/progress_gui.py b/iw/progress_gui.py index 75c8523..9580966 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -131,21 +131,21 @@ class InstallProgressWindow (InstallWindow): =20 # Create rnote area # Gentoo uses the rnote area for emerge progress. - #self.adpix =3D None + self.adpix =3D None self.adbox =3D None =20 self.terminal =3D VirtualTerminal() =20 - #pix =3D gui.readImageFromFile(self.pixmaps[0]) - #if pix: - frame =3D gtk.Frame() - frame.set_shadow_type(gtk.SHADOW_NONE) - box =3D gtk.EventBox() - # self.adpix =3D pix - box.add(self.terminal) - self.adbox =3D box - frame.add(box) - vbox.pack_start(frame, True, True) + pix =3D gui.readImageFromFile(self.pixmaps[0]) + if pix: + frame =3D gtk.Frame() + frame.set_shadow_type(gtk.SHADOW_NONE) + box =3D gtk.EventBox() + self.adpix =3D pix + box.add(self.adpix) + self.adbox =3D box + frame.add(box) + vbox.pack_start(frame, True, True) =20 # Just an example for now self.terminal.run_command('/bin/bash')