Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix JobStatusDisplay width #1377

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions lib/_emerge/JobStatusDisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@


class JobStatusDisplay:
# Used as maximum display width and default fallback value.
max_display_width = 100

_bound_properties = ("curval", "failed", "running")

# Don't update the display unless at least this much
Expand Down Expand Up @@ -65,14 +68,14 @@ def __init__(self, quiet=False, xterm_titles=True):
if self._isatty:
width = portage.output.get_term_size()[1]
else:
width = 100
width = self.max_display_width
self._set_width(width)

def _set_width(self, width):
if width == getattr(self, "width", None):
return
if width <= 0 or width > 80:
width = 80
if width <= 0 or width > self.max_display_width:
width = self.max_display_width
object.__setattr__(self, "width", width)
object.__setattr__(self, "_jobs_column_width", width - 32)

Expand Down