* Source/NSTextView.m: Use respectFraction: YES when deciding whether

to do a word selection upon a right click


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33441 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2011-07-03 20:53:44 +00:00
parent eb15c615d1
commit de89388c7f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-07-03 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSTextView.m: Use respectFraction: YES when deciding whether
to do a word selection upon a right click
2011-07-03 Eric Wasylishen <ewasylishen@gmail.com>
* TextConverters/RTF/RTFProducer.m: Writing of NSLinkAttributeName; reading

View file

@ -5679,7 +5679,7 @@ static const NSInteger GSSpellingSuggestionMenuItemTag = 1;
NSMenu *menu = [[self class] defaultMenu];
NSPoint point = [self convertPoint: [theEvent locationInWindow] fromView: nil];
NSUInteger index = [self _characterIndexForPoint: point
respectFraction: NO];
respectFraction: YES];
if (_tf.is_selectable == NO)
return;