changeset 42:2e466b478c0b

Fix a bug in a test that somehow slipped by in last commits.
author Jordan Miner <jminer7@gmail.com>
date Thu, 30 Jul 2009 17:36:54 -0500
parents c25e8b83c5b8
children 6b264c92da34
files dynamin/gui/layout.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dynamin/gui/layout.d	Wed Jul 29 23:30:15 2009 -0500
+++ b/dynamin/gui/layout.d	Thu Jul 30 17:36:54 2009 -0500
@@ -688,7 +688,7 @@
 
 	// semielastic
 	panel = mixin(createLayout(`T[2]( H(*label1) tb1 H(*button1) tb2 )`));
-	assert(panel.bestSize == Size(70+100+sp*3, 20+30+sp*3));
+	assert(panel.bestSize == Size(80+100+sp*3, 20+30+sp*3));
 	assert(panel.elasticX == true);
 	assert(panel.elasticY == false);
 	panel.size = [500, 500];