* GormInspectorsManager.m: _internalCall:

only reload the column when needed, this was causing segfaults
  with the new lockFocus code.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15928 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Pierre-Yves Rivaille 2003-02-10 20:20:04 +00:00
parent 0169623822
commit a8ebc11e39
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2003-02-10 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
* GormInspectorsManager.m: _internalCall:
only reload the column when needed, this was causing segfaults
with the new lockFocus code.
2003-02-02 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/3Containers/GormTableViewEditor.m: missing

View file

@ -648,7 +648,9 @@
[self browser: newBrowser
selectCellWithString: [[newBrowser selectedCell] stringValue]
inColumn: [newBrowser selectedColumn]];
[newBrowser reloadColumn: 1];
if ([newBrowser selectedColumn] == 0
&& [[newBrowser selectedCell] isLeaf] == NO)
[newBrowser reloadColumn: 1];
}
else if (sender == oldBrowser)
{