From: Zac Medico Date: Mon, 28 May 2007 21:31:45 +0000 (-0000) Subject: Cap the progress bar columns at 80 since it looks ridiculous when it gets too wide. X-Git-Tag: v2.2_pre1~1348 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0ba7c3e6ec23ec15453418f146194f46b1369035;p=portage.git Cap the progress bar columns at 80 since it looks ridiculous when it gets too wide. svn path=/main/trunk/; revision=6654 --- 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