From ff1622cd1d84f84cbe5af4099b7cd3b8e10f2a0c Mon Sep 17 00:00:00 2001 From: es80 Date: Wed, 17 Mar 2021 20:03:06 +0000 Subject: [PATCH] Set default scrolling width to match text length This change means that a scrollable widgets like 'shell' will by default appear the same as before the feature was introduced. --- bumblebee_status/core/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee_status/core/decorators.py b/bumblebee_status/core/decorators.py index 8c60c70..ecf9d7e 100644 --- a/bumblebee_status/core/decorators.py +++ b/bumblebee_status/core/decorators.py @@ -74,7 +74,7 @@ def scrollable(func): widget.set("scrolling.direction", "right") widget.set("__content__", text) - width = util.format.asint(module.parameter("scrolling.width", 30)) + width = util.format.asint(module.parameter("scrolling.width", len(text))) if util.format.asbool(module.parameter("scrolling.makewide", True)): widget.set("theme.minwidth", "A" * width) if width < 0 or len(text) <= width: