I noticed testing with splitter with horizontal direction, having min height for top panel only,
when resizing the window and the size of top panel get smaller than the min height,
the height of top panel is well set to its minimun but the bottom panel is not recalculated,
causing the bottom panel to be bigger than it should. Adding top panel height and bottom panel height
goes above 100% which does not make sense.
following code does not adjust g in the following code snippet
if (v < l) {
var o = l * s;
h.css(q, parseFloat(o) + “%”)
}
something like this code below sounds missing in the if test
var c = 100 – parseFloat(o);
c -= p;
g.css(q, c + “%”);
As a turn around waiting for a fix I consider listening on layout event and adjusting the bottom panel myself with similar code I proposed.
What do you think?