fix trampoline fix
svn: r14877 original commit: af94e11d19ff99d0d06ad72b6a75333b4d48ad7c
This commit is contained in:
parent
9b112e3600
commit
67f573699a
|
@ -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