Citando Adam Fedor <[EMAIL PROTECTED]>: > Whoops. Sorry, I was looking at the backtrace again and realized it's a > problem with the NSMatrix patch the Benhur gave me. I'll have to look at > that instead.
Yes, sorry.. In the patch, -mouseDown: calls -_selectCell:atRow:column: instead of changing the selected cell manually. The problem is that -_selectCell:.. calls -selectTextAtRow:column:, and that probably interferes with what -mouseDown: is setting up for edition. Taking that call away from _selectCell: solves the problem. Probably there will be problems with text not being selected when doing a selection programatically with -selectCell: (which I do not know if is a problem or not). I think the solution would be to make -_selectCell:atRow:column: a simpler auxiliar method and call it from -selectTextAtRow:column: Other places that call -_selectCell:atRow:column: can be changed to call -selectTextAtRow:column: if that is what should be done. I can make a new patch with these changes. Benhur _______________________________________________ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gnustep
