From 61fb2596fc232a061a25575c1713e6905bc112d6 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sun, 17 Jul 2005 03:31:09 +0000 Subject: [PATCH] Corrected notification-update loop. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21492 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 7 +++++++ GormCore/GormClassInspector.m | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3e46102e..3c5f7ba9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-07-16 23:34 Gregory John Casamento + + * GormCore/GormClassInspector.m: -_refreshView removed + call to deselectAll: for the actionTable and outletTable. + On occasion this was causing the application to go into a + notification-update loop. + 2005-07-15 21:48 Gregory John Casamento * GormCore/GormInspectorsManager.m: -init, changed NSLog to diff --git a/GormCore/GormClassInspector.m b/GormCore/GormClassInspector.m index 7c72a346..0249506c 100644 --- a/GormCore/GormClassInspector.m +++ b/GormCore/GormClassInspector.m @@ -318,8 +318,8 @@ objectValueForTableColumn: (NSTableColumn *)tc [outletTable reloadData]; [actionTable reloadData]; [parentClass reloadData]; - [outletTable deselectAll: self]; - [actionTable deselectAll: self]; + // [outletTable deselectAll: self]; + // [actionTable deselectAll: self]; // activate for actions... [addActionCell setEnabled: YES];