changed button-message to be sent on button-release

This commit is contained in:
frese 2003-05-05 14:46:32 +00:00
parent 553fc1c5d5
commit 36da85834f
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
(up-colors colors '("gray" "white" "black" "black"))
(down-colors colors '("gray" "black" "white" "black"))
(font font "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*")
(content sexp 'none) ;; string | 'kill | 'iconize | 'maximize
(content sexp 'none) ;; string | 'kill | 'iconify | 'maximize
)
(define-record-type button :button
@ -49,10 +49,10 @@
(button-event-type e))
(begin
(draw-button button gc 'down)
(send out-channel (list message (button-event-time e)))
(loop 'down))
(begin
(draw-button button gc 'up)
(send out-channel (list message (button-event-time e)))
(loop 'up))))
(else (loop state)))))
(free-gc dpy gc)
@ -106,7 +106,7 @@
(foreground (fourth colors))))
(draw-line dpy window gc bw bw (- ww (* 2 bw)) (- wh (* bw 2)))
(draw-line dpy window gc bw (- wh (* bw 2)) (- ww (* bw 2)) bw))
((iconize)
((iconify)
(change-gc dpy gc
(make-gc-value-alist
(line-width bw)