fix trampoline fix
svn: r14877
This commit is contained in:
parent
43c8b6cafd
commit
af94e11d19
|
@ -224,7 +224,7 @@
|
|||
0 0 #t #t)))
|
||||
(inherit editor-canvas-on-scroll)
|
||||
(define/override (on-scroll e)
|
||||
(if (or (eq? 'msw (system-type))
|
||||
(if (or (eq? 'windows (system-type))
|
||||
(eq? 'macosx (system-type)))
|
||||
(queue-window-callback
|
||||
this
|
||||
|
|
|
@ -351,13 +351,13 @@
|
|||
(thunk)))
|
||||
|
||||
(define/override (on-set-focus)
|
||||
(if (eq? 'msw (system-type))
|
||||
(if (eq? 'windows (system-type))
|
||||
(queue-window-callback
|
||||
this
|
||||
(lambda () (on-focus #t)))
|
||||
(on-focus #t)))
|
||||
(define/override (on-kill-focus)
|
||||
(if (eq? 'msw (system-type))
|
||||
(if (eq? 'windows (system-type))
|
||||
(queue-window-callback
|
||||
this
|
||||
(lambda () (on-focus #f)))
|
||||
|
|
Loading…
Reference in New Issue
Block a user