* EOInterface/EOPopUpAssociation.m (subjectChanged:): Select

the item with tag, not item with index of the tag.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@26581 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2008-05-28 00:39:35 +00:00
parent 440372a7d3
commit 313436dd2b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-05-27 Matt Rice <ratmice@gmail.com>
* EOInterface/EOPopUpAssociation.m (subjectChanged:): Select
the item with tag, not item with index of the tag.
2008-05-23 Blake Nicholson <blaken@umich.edu>
* DBModeler/AdaptorsPanel.m, DBModeler/AttributeCell.m,

View file

@ -200,7 +200,7 @@
{
int tag = [[self valueForAspect:@"selectedTag"] intValue];
[_object selectItemAtIndex:tag];
[_object selectItemAtIndex:[_object indexOfItemWithTag:tag]];
}
}
else if (subclassFlags & SelectedTitleAspectMask)