Skip to content

Commit 7d29520

Browse files
committed
Set min winheight to 1, for definite this time (#84)
1 parent 5843c36 commit 7d29520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/python/vdebug/ui/vimui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def set_height(self,height):
273273
minheight = vim.eval("&winminheight")
274274
if height < minheight:
275275
height = minheight
276-
if height < 0:
276+
if height <= 0:
277277
height = 1
278278
self.command('set winheight=%s' % str(height))
279279

0 commit comments

Comments
 (0)