From 0ba7c3e6ec23ec15453418f146194f46b1369035 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 28 May 2007 21:31:45 +0000 Subject: Cap the progress bar columns at 80 since it looks ridiculous when it gets too wide. svn path=/main/trunk/; revision=6654 --- pym/portage/output.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pym') diff --git a/pym/portage/output.py b/pym/portage/output.py index 75e043483..f5e261c82 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -476,6 +476,7 @@ class TermProgressBar(ProgressBar): lines, self.term_columns = get_term_size() self.file = sys.stdout self._min_columns = 11 + self._max_columns = 80 # for indeterminate mode, ranges from 0.0 to 1.0 self._position = 0.0 @@ -490,6 +491,8 @@ class TermProgressBar(ProgressBar): def _create_image(self): cols = self.term_columns + if cols > self._max_columns: + cols = self._max_columns min_columns = self._min_columns curval = self._curval maxval = self._maxval -- cgit v1.2.3-1-g7c22