From a644dc0f039eba09c2a46b535e96a2e438e33e73 Mon Sep 17 00:00:00 2001 From: protocol_1903 <67478786+protocol-1903@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:17:24 -0700 Subject: [PATCH] Fixed parts of the caravan interrupt GUI being hidden if too many conditions or targets were added. Resolves https://github.com/pyanodon/pybugreports/issues/1325 --- changelog.txt | 1 + scripts/caravan/gui/edit_interrupt.lua | 2 ++ 2 files changed, 3 insertions(+) diff --git a/changelog.txt b/changelog.txt index d436e74db..4aa3752c8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,7 @@ Date: ???? - Allowed sea sponges mk02+ from sea sponge sprouts mk02+ to accept productivity. Resolves https://github.com/pyanodon/pybugreports/issues/1335 - Fixed cadaveric arum smart farm recipe 2 being the same as recipe 3. Resolves https://github.com/pyanodon/pybugreports/issues/1358 - Switched smart farm autolaunch hotfix to proper runtime API call introduced in 2.0.73 + - Fixed parts of the caravan interrupt GUI being hidden if too many conditions or targets were added. Resolves https://github.com/pyanodon/pybugreports/issues/1325 --------------------------------------------------------------------------------------------------- Version: 3.0.62 Date: 2026-01-05 diff --git a/scripts/caravan/gui/edit_interrupt.lua b/scripts/caravan/gui/edit_interrupt.lua index a2bf4c747..3d4fcc298 100644 --- a/scripts/caravan/gui/edit_interrupt.lua +++ b/scripts/caravan/gui/edit_interrupt.lua @@ -126,6 +126,7 @@ function P.build_conditions_pane(parent) -- This is 400 maximum width by default (inherited from style), we need it a bit wider pane.style.width = 500 pane.style.natural_width = 500 + pane.style.minimal_height = 90 pane.style.vertically_stretchable = false P.build_conditions_flow(pane) @@ -200,6 +201,7 @@ function P.build_targets_pane(parent) -- This is 400 maximum width by default (inherited from style), we need it a bit wider pane.style.width = 500 pane.style.natural_width = 500 + pane.style.minimal_height = 90 pane.style.vertically_stretchable = false P.build_targets_flow(pane)