window move => move background, too
svn: r2863
This commit is contained in:
parent
10601147cf
commit
88b51730c8
|
@ -311,7 +311,11 @@
|
||||||
(define/private (move-over dx dy)
|
(define/private (move-over dx dy)
|
||||||
(let ([x (get-x)]
|
(let ([x (get-x)]
|
||||||
[y (get-y)])
|
[y (get-y)])
|
||||||
(move (+ x dx) (+ y dy))))
|
(move (+ x dx) (+ y dy)))
|
||||||
|
(when background-f
|
||||||
|
(let ([x (send background-f get-x)]
|
||||||
|
[y (send background-f get-y)])
|
||||||
|
(send background-f move (+ x dx) (+ y dy)))))
|
||||||
|
|
||||||
(define/private (prev)
|
(define/private (prev)
|
||||||
(stop-transition)
|
(stop-transition)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user