mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* 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:
parent
0169623822
commit
a8ebc11e39
2 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue