Skip to content

Commit

Permalink
fix: floatFactory should not set zindex: 1 (#4816)
Browse files Browse the repository at this point in the history
Remove the `zindex: 1` hardcoding in `FloatFactoryImpl.createPopup` to
allow for other floating windows to be displayed underneath.
  • Loading branch information
V-Mann-Nick authored Nov 27, 2023
1 parent 9c3723a commit e108777
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/model/floatFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ export default class FloatFactoryImpl implements Disposable {
close: opts.close ? 1 : 0,
rounded: opts.rounded ? 1 : 0,
modes: opts.modes || ['n', 'i', 'ic', 's'],
zindex: 1
}
if (!isVim) {
if (typeof opts.winblend === 'number') config.winblend = opts.winblend
Expand Down

0 comments on commit e108777

Please sign in to comment.