diff options
author | John Ankarstr\xf6m <john@ankarstrom.se> | 2021-05-29 14:43:06 +0200 |
---|---|---|
committer | John Ankarstr\xf6m <john@ankarstrom.se> | 2021-05-29 14:43:40 +0200 |
commit | 79250c42d6c7e4f999381856a71b25f5193b7221 (patch) | |
tree | 70269db90dda1f06cf79715c5ead7f7d40a5dc44 /src | |
parent | 1ab9d314968f84e5b7e6530424cf08017de1f3ae (diff) | |
download | jwm-79250c42d6c7e4f999381856a71b25f5193b7221.tar.gz |
FocusPreviousStackedCircular: Fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/taskbar.c | 2 |
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)) { |