Skip to content

Commit

Permalink
v0.7.37
Browse files Browse the repository at this point in the history
  • Loading branch information
avahe-kellenberger committed Aug 24, 2023
1 parent 2c1abfc commit 865b251
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nimdow.nimble
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Package
version = "0.7.36"
version = "0.7.37"
author = "avahe-kellenberger"
description = "A window manager written in nim"
license = "GPL v2"
Expand Down
2 changes: 1 addition & 1 deletion src/nimdowpkg/ipc/cli.nim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import
../wmcommands,
../logger

const version* = "v0.7.36"
const version* = "v0.7.37"
const commit* = getEnv("LATEST_COMMIT")

proc handleWMCommand(commandStr: string): bool =
Expand Down
4 changes: 2 additions & 2 deletions src/nimdowpkg/monitor.nim
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,8 @@ proc addClient*(this: Monitor, client: var Client, assignToSelectedTags: bool =
this.statusBar.redraw()

proc rotateClients*(this: Monitor) =
if this.clients.len > 1:
let clientNode = this.taggedClients.findLastLayoutNode()
let clientNode = this.taggedClients.findLastLayoutNode()
if clientNode != nil:
this.clients.remove(clientNode)
this.clients.prepend(clientNode)
this.doLayout()
Expand Down

0 comments on commit 865b251

Please sign in to comment.