aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/_emerge/JobStatusDisplay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_emerge/JobStatusDisplay.py b/lib/_emerge/JobStatusDisplay.py
index 78fd8f761..6506aed7d 100644
--- a/lib/_emerge/JobStatusDisplay.py
+++ b/lib/_emerge/JobStatusDisplay.py
@@ -71,8 +71,8 @@ class JobStatusDisplay:
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 > 100:
+ width = 100
object.__setattr__(self, "width", width)
object.__setattr__(self, "_jobs_column_width", width - 32)