From 48e0100727c5568bc670e4b8ff23efa24af4e142 Mon Sep 17 00:00:00 2001 From: christoph-heinrich Date: Mon, 4 Mar 2024 15:00:14 +0100 Subject: [PATCH] fix: redraw when toggling the title in the top bar (#870) --- src/uosc/elements/TopBar.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uosc/elements/TopBar.lua b/src/uosc/elements/TopBar.lua index 8b943aec..ee552998 100644 --- a/src/uosc/elements/TopBar.lua +++ b/src/uosc/elements/TopBar.lua @@ -157,6 +157,7 @@ end function TopBar:toggle_title() if options.top_bar_alt_title_place ~= 'toggle' then return end self.show_alt_title = not self.show_alt_title + request_render() end function TopBar:on_prop_title() self:decide_titles() end