Skip to content

Commit f8ac536

Browse files
committed
Fix incorrect default value for is_hidden
1 parent a56f979 commit f8ac536

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/scrollview.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ local get_floating_windows = function(hidden)
370370
local floating = tbl_get(config, 'relative', '') ~= ''
371371
local workspace_win =
372372
fn.getwinvar(winid, WIN_WORKSPACE_BASE_WINID_VAR, -1) ~= -1
373-
local is_hidden = tbl_get(config, 'hide', '') or false
373+
local is_hidden = tbl_get(config, 'hide', false)
374374
if not workspace_win
375375
and floating
376376
and (hidden or not is_hidden) then

0 commit comments

Comments
 (0)