From 4fbec6578b181d0203c744380dd1963c7b4242c8 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Fri, 27 Jan 2023 00:43:47 +0800 Subject: [PATCH] fix: fix window size --- lua/Trans/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index 188b499..32e3de8 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -102,11 +102,11 @@ M.setup = function(opts) local float = M.conf.float - if float.height < 0 and float.height <= 1 then + if 0 < float.height and float.height <= 1 then float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height) end - if float.width < 0 and float.width <= 1 then + if 0 < float.width and float.width <= 1 then float.width = math.floor(vim.o.columns * float.width) end