From ce8e891cbee8f3f42d1765eeb95cbe7ff5d45efc Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Sun, 5 May 2024 11:45:52 -0300 Subject: [PATCH] Fixed height of Window Main section, where the Delete button was separated from the window selection dropdown. --- frames/window_options2_sections.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frames/window_options2_sections.lua b/frames/window_options2_sections.lua index c8557685..534cbae6 100644 --- a/frames/window_options2_sections.lua +++ b/frames/window_options2_sections.lua @@ -3117,7 +3117,7 @@ do } sectionFrame.sectionOptions = sectionOptions sectionOptions.always_boxfirst = true - DF:BuildMenu(sectionFrame, sectionOptions, startX, startY-20, heightSize, false, options_text_template, options_dropdown_template, options_switch_template, true, options_slider_template, options_button_template) + DF:BuildMenu(sectionFrame, sectionOptions, startX, startY-20, heightSize+20, false, options_text_template, options_dropdown_template, options_switch_template, true, options_slider_template, options_button_template) end tinsert(Details.optionsSection, buildSection)