On Friday, November 21, 2008 at 05:04PM, Janek Kozicki wrote:
Christopher Bratusek said:     (by the date of Fri, 21 Nov 2008 17:44:10 +0100)

... What version of audacious are you two using? What focus-mode? What
other focus-options?

 audacious  1.5.1-4

focus mode: enter-click

+ click-to-focus passes the click through to the application

Hm, I'm also using focus-click and click-to-focus with audacious 1.5.1-4, but I 
just noticed that my enter-click function is defined in ~/.sawfishrc (because 
1.3.3 doesn't have it):

; http://mail.gnome.org/archives/sawfish-list/2008-March/msg00016.html
(define-focus-mode 'enter-click
  (lambda (w action)
    (case action
      ((pointer-in)
      (when (window-really-wants-input-p w)
        (set-input-focus w)))
      ((focus-in)
       (focus-pop-map w))
      ((focus-out add-window)
       (unless (or (not (window-really-wants-input-p w))
                   (eq w (input-focus)))
         (focus-push-map w click-to-focus-map)))
      ((before-mode-change)
       (focus-pop-map w))
      ((after-mode-change)
       (unless (or (not (window-really-wants-input-p w))
                   (eq w (input-focus)))
         (focus-push-map w click-to-focus-map))))))

Maybe something is broken here.. I'll have to check how 1.3.4 does it, or maybe 
I'll just get rid of the debian package and install from source.

Reply via email to