From edf8bd55d6b11b3c67c49591a4faa585016ef2e7 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 7 May 2020 22:17:19 +0800 Subject: [PATCH] fix border --- src/ltui/border.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ltui/border.lua b/src/ltui/border.lua index 7abc540..05dafc0 100644 --- a/src/ltui/border.lua +++ b/src/ltui/border.lua @@ -50,13 +50,13 @@ function border:draw(transparent) -- the left-upper attribute local attr_ul = curses.color_pair(cornerattr[1], self:background()) if self:background() == cornerattr[1] then - attr_ul = {attr_ul, "standout"} + attr_ul = {attr_ul, "bold"} end -- the right-lower attribute local attr_rl = curses.color_pair(cornerattr[2], self:background()) if self:background() == cornerattr[2] then - attr_rl = {attr_rl, "standout"} + attr_rl = {attr_rl, "bold"} end -- the border characters