From 948e13331c026d559f746bc817d432f12000565d Mon Sep 17 00:00:00 2001 From: Insality Date: Tue, 14 Oct 2025 00:39:36 +0300 Subject: [PATCH] Update --- druid/custom/rich_text/rich_text.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/druid/custom/rich_text/rich_text.lua b/druid/custom/rich_text/rich_text.lua index 973ed03..f5ac187 100644 --- a/druid/custom/rich_text/rich_text.lua +++ b/druid/custom/rich_text/rich_text.lua @@ -264,15 +264,19 @@ end ---Set the width of the rich text, not affects the size of current spawned words ---@param width number +---@return druid.rich_text self function M:set_width(width) self._settings.width = width + return self end ---Set the height of the rich text, not affects the size of current spawned words ---@param height number +---@return druid.rich_text self function M:set_height(height) self._settings.height = height + return self end