From 94cf605f438f647e185faa063a8aaed044f7bb0e Mon Sep 17 00:00:00 2001 From: nico Date: Fri, 3 Dec 1999 04:25:42 +0000 Subject: [PATCH] Tiny optimization I forgot. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5365 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTableColumn.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/NSTableColumn.m b/Source/NSTableColumn.m index d84215b71..d01abb9ba 100644 --- a/Source/NSTableColumn.m +++ b/Source/NSTableColumn.m @@ -118,6 +118,9 @@ else if (newWidth < _min_width) newWidth = _min_width; + if (_width == newWidth) + return; + _width = newWidth; if (_tableView)