Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions scripts/caravan/gui/edit_interrupt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down