allow authors inside table to scroll during editing

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@28034 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2009-03-03 23:21:57 +00:00
parent 5b5c07c061
commit 863a0c679b
2 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-03-03 Riccardo Mottola <rmottola@users.sf.net>
* Framework/PCProjectInspector.m: allow authors inside table to scroll during editing
2009-03-02 Riccardo Mottola <rmottola@users.sf.net>
* Framework/PCProject.m,

View file

@ -1,7 +1,7 @@
/*
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
Copyright (C) 2000-2004 Free Software Foundation
Copyright (C) 2000-2009 Free Software Foundation
Authors: Philippe C.D. Robert
Serg Stoyan
@ -555,6 +555,7 @@
[authorsList setHeaderView:nil];
[authorsList addTableColumn:authorsColumn];
[authorsList setDataSource:self];
[authorsList setDelegate:self];
//
[authorsScroll setDocumentView:authorsList];
@ -933,4 +934,12 @@
}
}
- (void) tableView: (NSTableView*)aTableView
willDisplayCell: (id)aCell
forTableColumn: (NSTableColumn*)aTableColumn
row: (int)rowIndex
{
[(NSTextFieldCell *)aCell setScrollable:YES];
}
@end