aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarstr\xf6m <john@ankarstrom.se>2021-05-29 14:43:06 +0200
committerJohn Ankarstr\xf6m <john@ankarstrom.se>2021-05-29 14:43:40 +0200
commit79250c42d6c7e4f999381856a71b25f5193b7221 (patch)
tree70269db90dda1f06cf79715c5ead7f7d40a5dc44
parent1ab9d314968f84e5b7e6530424cf08017de1f3ae (diff)
downloadjwm-79250c42d6c7e4f999381856a71b25f5193b7221.tar.gz
FocusPreviousStackedCircular: Fix typo
-rw-r--r--src/taskbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/taskbar.c b/src/taskbar.c
index c553652..1e2cb1b 100644
--- a/src/taskbar.c
+++ b/src/taskbar.c
@@ -710,7 +710,7 @@ void FocusPreviousStackedCircular() {
ac = GetActiveClient();
np = NULL;
- /* Check for a valid client below this client in the same layer. */
+ /* Check for a valid client above this client in the same layer. */
if(ac) {
for(np = ac->prev; np; np = np->prev) {
if(ShouldFocusItem(np)) {