Tiny optimization I forgot.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5365 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 1999-12-03 04:25:42 +00:00
parent 76c1535542
commit 6db2cf946c

View file

@ -118,6 +118,9 @@
else if (newWidth < _min_width)
newWidth = _min_width;
if (_width == newWidth)
return;
_width = newWidth;
if (_tableView)