Minor logic fix.

This commit is contained in:
slamm 1998-04-24 22:23:13 +00:00
parent 89e7dfffcc
commit 5fe8450fa8

View File

@ -10644,7 +10644,7 @@ SizeColumnsToFit(XmLGridWidget g, int starting_at)
resizable_width += colp->grid.width;
}
if (delta == 0 && resizable_width <= 0)
if (delta == 0 || resizable_width <= 0)
return delta;
if (g->grid.debugLevel)