diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-19 14:34:41 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-19 14:34:41 +1100 |
| commit | 7bf8cd4cf0fd277d7ec30c1ea6f3d83017fec160 (patch) | |
| tree | 38f7fd7b00409051f5af34b71bbd44cedd6a001d /src/modules | |
| parent | bar: use menubutton for tray items (diff) | |
| download | caelestia-shell-7bf8cd4cf0fd277d7ec30c1ea6f3d83017fec160.tar.gz caelestia-shell-7bf8cd4cf0fd277d7ec30c1ea6f3d83017fec160.tar.bz2 caelestia-shell-7bf8cd4cf0fd277d7ec30c1ea6f3d83017fec160.zip | |
bar: fix being too tall when vertical
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/bar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/bar.tsx b/src/modules/bar.tsx index e7d9138..709f948 100644 --- a/src/modules/bar.tsx +++ b/src/modules/bar.tsx @@ -151,7 +151,7 @@ const MediaPlaying = () => { angle={config.vertical ? 270 : 0} setup={self => players.hookLastPlayer(self, ["notify::title", "notify::artist"], () => { - self.label = ellipsize(getLabel("No media")); // TODO: scroll text + self.label = ellipsize(getLabel("No media"), config.vertical ? 30 : 40); // TODO: scroll text }) } /> |