Was missing a break in a switch statement.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@366 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-10-17 17:01:02 +00:00
parent 6a5b6e629b
commit 758b5f9ff5
@@ -1,5 +1,5 @@
//
// $Id: VGroupLayout.java,v 1.8 2001/10/09 19:46:31 mdb Exp $
// $Id: VGroupLayout.java,v 1.9 2001/10/17 17:01:02 mdb Exp $
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne
@@ -149,6 +149,7 @@ public class VGroupLayout extends GroupLayout
case LEFT:
case TOP:
sy = insets.top;
break;
case CENTER:
sy = insets.top + (b.height - tothei)/2;
break;