diff options
| author | Fuwn <[email protected]> | 2024-05-23 15:51:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 15:51:07 -0700 |
| commit | 7537dadadd5525229a8c6e0d332cdff22af9d384 (patch) | |
| tree | eaa310c9d24f49dde39782ce8c104d18b6bede77 | |
| parent | fix(dwm.c): buttonpres with sp padding (diff) | |
| download | seiwm-7537dadadd5525229a8c6e0d332cdff22af9d384.tar.xz seiwm-7537dadadd5525229a8c6e0d332cdff22af9d384.zip | |
fix(dwm.c): correct systray position on bar toggle
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2238,7 +2238,7 @@ togglebar(const Arg *arg) if (!selmon->showbar) wc.y = -bh; else if (selmon->showbar) { - wc.y = 0; + wc.y = vp; if (!selmon->topbar) wc.y = selmon->mh - bh; } |