trunk/src/osd/modules/debugger/osx/debugosxdebugview.m
| r243539 | r243540 | |
| 403 | 403 | - (void)mouseDown:(NSEvent *)event { |
| 404 | 404 | NSPoint const location = [self convertPoint:[event locationInWindow] fromView:nil]; |
| 405 | 405 | view->process_click(DCK_LEFT_CLICK, [self convertLocation:location]); |
| 406 | [self setNeedsDisplay:YES]; |
| 406 | 407 | } |
| 407 | 408 | |
| 408 | 409 | |
| 409 | 410 | - (void)rightMouseDown:(NSEvent *)event { |
| 410 | 411 | NSPoint const location = [self convertPoint:[event locationInWindow] fromView:nil]; |
| 411 | 412 | view->process_click(DCK_RIGHT_CLICK, [self convertLocation:location]); |
| 413 | [self setNeedsDisplay:YES]; |
| 412 | 414 | [super rightMouseDown:event]; |
| 413 | 415 | } |
| 414 | 416 | |