canvas% on-scroll: call in non-atomic mode
Add a missing exit from atomic mode on the way to an overidden `on-scroll` method. Closes PR 15068
This commit is contained in:
parent
bc87ded206
commit
b882281b33
|
@ -62,7 +62,7 @@
|
||||||
(lambda (e)
|
(lambda (e)
|
||||||
(let ([mred (get-mred)])
|
(let ([mred (get-mred)])
|
||||||
(if mred
|
(if mred
|
||||||
(send mred on-scroll e)
|
(as-exit (lambda () (send mred on-scroll e)))
|
||||||
(as-exit (lambda () (super on-scroll e)))))))]
|
(as-exit (lambda () (super on-scroll e)))))))]
|
||||||
[on-paint (entry-point
|
[on-paint (entry-point
|
||||||
(lambda ()
|
(lambda ()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user