From da66abb07c79b51fe0fa10e2da86df3d9359e5bf Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 9 Mar 2000 19:40:54 +0000 Subject: [PATCH] Fixed bug in adjusting subviews when the divider is horizontal git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6239 72102866-910b-0410-8b05-ffd578937521 --- Source/NSSplitView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSSplitView.m b/Source/NSSplitView.m index b7ac59d20..e8ec26cf5 100644 --- a/Source/NSSplitView.m +++ b/Source/NSSplitView.m @@ -344,7 +344,7 @@ RETURN_LABEL: oldTotal += NSHeight(frames[i]); } scale = newTotal/oldTotal; - running = newTotal; + running = NSHeight (_bounds); for (i = 0; i < count; i++) { float newHeight;