Skip to content

Commit

Permalink
fix: updated window placement
Browse files Browse the repository at this point in the history
  • Loading branch information
midekra committed Aug 3, 2023
1 parent 2dae32b commit ec35c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/notify/stages/util.lua
Expand Up @@ -87,7 +87,7 @@ end
function M.get_slot_range(direction)
local top = vim.opt.tabline:get() == "" and 0 or 1
--- https://github.com/rcarriga/nvim-notify/issues/189
local top = top - 3
local top = top + 1
local bottom = vim.opt.lines:get()
- (vim.opt.cmdheight:get() + (vim.opt.laststatus:get() > 0 and 1 or 0))
local left = 1
Expand Down

0 comments on commit ec35c9c

Please sign in to comment.