diff --git a/changelog.txt b/changelog.txt index d436e74d..4aa3752c 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 a2bf4c74..3d4fcc29 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)