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