You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.
(My english is poor , but I'm trying hard to explain this. : ) )
I have a textRenderer in a TUITableViewCell , but it is abnormal when I use mouse drag to select text in it.
The background didn't change when I dragging.
I found TUITableViewCell has override selfs' mouseDragged: method for cell reordering function.
so I add [super mouseDragged:event]; in this method.
method seems like below now.
-(void)mouseDragged:(NSEvent *)event {
// notify our table view of the event
[supermouseDragged:event];
[self.tableView __mouseDraggedCell:selfoffset:_mouseOffset event:event];
}
Is that correct ?
The text was updated successfully, but these errors were encountered:
You can see it in example app , cell is draggable, but you can select text in it only by double click it or drag and mouse up, background color change when you did mouse up.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
(My english is poor , but I'm trying hard to explain this. : ) )
I have a textRenderer in a TUITableViewCell , but it is abnormal when I use mouse drag to select text in it.
The background didn't change when I dragging.
I found TUITableViewCell has override selfs' mouseDragged: method for cell reordering function.
so I add [super mouseDragged:event]; in this method.
method seems like below now.
Is that correct ?
The text was updated successfully, but these errors were encountered: