# HG changeset patch # User Olaf Wintermann # Date 1756213640 -7200 # Node ID 8487d11b94910ecbe40971f7afb4f2a48005fbef # Parent c812d7038731db570a3a0d394f0c007cd29e04eb h/v expand/fill should be independent setting diff -r c812d7038731 -r 8487d11b9491 ui/gtk/container.c --- a/ui/gtk/container.c Tue Aug 26 13:39:13 2025 +0200 +++ b/ui/gtk/container.c Tue Aug 26 15:07:20 2025 +0200 @@ -193,15 +193,15 @@ if(!ct->layout.override_defaults) { if(grid->def_hexpand) { hexpand = TRUE; - hfill = TRUE; - } else if(grid->def_hfill) { + } + if(grid->def_hfill) { hfill = TRUE; } if(grid->def_vexpand) { vexpand = TRUE; - vfill = TRUE; - } else if(grid->def_vfill) { - vfill = TRUE; + } + if(grid->def_vfill) { + vexpand = TRUE; } }