Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
gtk apps acting stupid with the mouse
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Sat Dec 03, 2011 12:55 am    Post subject: gtk apps acting stupid with the mouse Reply with quote

So, I just recently ran a world update, installing a bunch of gtk3 stuff. However, I've also noticed - I think since the last xorg-server update - that gtk apps (and gtk apps only) are acting really bizarre with the mouse. Specifically, if I left-click on a point within the window, that application ignores all changes of cursor position until I right-click somewhere else.

Example:
I move the main window of Audacious to the corner by left-clicking on the top of the window, dragging to the new position, and release.
I left-click on the playlist (a different window), and drag: the main window moves, and the playlist stays put.
Once I right-click anywhere within one of those two windows, I can left-click the playlist, and move it.

Example 2:
I left-click the forward-skip button in the main window, and it skips a track forward.
Left-clicking anything else within either window skips a track forward, until I right-click something, and audacious gets wise.

This is not limited to audacious. 'evince' does the same bizarre behavior.

Below is /etc/X11/xorg.conf.d/11-inputs.conf:
Code:
Section "InputDevice"
   Identifier   "Mouse0"
#   MatchProduct "Logitech USB Trackball"
#   MatchIsPointer "on"
   Driver       "evdev"
   Option       "AutoEnableDevices" "true"
   Option       "AutoAddDevices" "true"
#   Option      "Emulate3Buttons" "true"
#   Option      "EmulateWheel" "true"
#   Option      "EmulateWheelButton" "8"
   Option       "ZAxisMapping" "4 5"
   Option       "ButtonMapping" "3 2 1 4 5 6 7 8 9"
EndSection

Please note: I actually use the mouse left-handed (I keep writing "left-click" and "right-click" to mean "main button" and "middle button" respectively, since that what most of you are used to seeing), so the swapped first two positions are correct.

But is there something wrong with this config? Xorg.log shows no errors, so I'm not really sure what's causing the trip-up.

Thanks for the help.

EE
UPDATE: So, I played around for a while with xmodmap, and realized this: setting the button mapping to "1 2 3 4 5 6 7 8 9" sets a left-handed mouse now. That's cool for me and all, but that's somewhat non-standard. Is there some way that evdev is being tricksy about the button mappings?
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Wed Dec 14, 2011 1:48 pm    Post subject: Reply with quote

I spoke too soon. After rebooting, and thus restarting X, I have the same problem.

If I execute the command
Code:
xmodmap -e "pointer = 1 2 3 4 5 6 7 8 9 10"
(I don't know why xmodmap thinks I have ten buttons - this trackball only has nine - but it throws a warning if I don't include 10), then I get a right-handed mouse, working correctly.

If I execute the command
Code:
xmodmap -e "pointer = 3 2 1 4 5 6 7 8 9 10"
I get a left handed mouse, but GTK apps - and GTK apps alone - do this weird thing where they stop tracking the pointer position if I click within their window, as per above.

So, what exactly might be causing this? Any ideas?

Cheers,

EE
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Wed Dec 14, 2011 2:06 pm    Post subject: Reply with quote

more info: I've narrowed it down a bit. there's *one post* on a redhat bugtracker here, which has the same problem. That is: fvwm suddenly stops handling left-handed mouse usage, but ONLY for GTK apps.

Guess I'll go talk to the fvwm people. Unless someone here knows what's up?

Thanks,

EE
Back to top
View user's profile Send private message
ThomasAdam
Guru
Guru


Joined: 20 Mar 2005
Posts: 448
Location: England

PostPosted: Wed Dec 14, 2011 3:42 pm    Post subject: Reply with quote

ExecutorElassus wrote:
more info: I've narrowed it down a bit. there's *one post* on a redhat bugtracker here, which has the same problem. That is: fvwm suddenly stops handling left-handed mouse usage, but ONLY for GTK apps.

Guess I'll go talk to the fvwm people. Unless someone here knows what's up?

Thanks,

EE


Yes -- it's either EWMHActivateWindowFunc, or it's: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642151

I can't tell from your description.

-- Thomas Adam
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Wed Dec 14, 2011 5:35 pm    Post subject: Reply with quote

Let's assume, for the sake of argument, that it's EWMHActivateWindowFunc. How do I fix the problem? I see a bunch of new config files for EWMH that I should add in (?), but I'm not sure how to proceed with that. Is there a specific set of modules/settings I now need to enable?

Thanks for the help.

EE
Back to top
View user's profile Send private message
ThomasAdam
Guru
Guru


Joined: 20 Mar 2005
Posts: 448
Location: England

PostPosted: Wed Dec 14, 2011 5:47 pm    Post subject: Reply with quote

ExecutorElassus wrote:
Let's assume, for the sake of argument, that it's EWMHActivateWindowFunc. How do I fix the problem? I see a bunch of new config files for EWMH that I should add in (?), but I'm not sure how to proceed with that. Is there a specific set of modules/settings I now need to enable?

Thanks for the help.

EE


Just destroy it for now:

DestroyFunc EwmhActivatesWindowFunc
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Wed Dec 14, 2011 6:00 pm    Post subject: Reply with quote

So, I added that line in my .fvwm/startup file, to no avail. I still have the same wonky behavior, but now both for right- and left-handed mouse usage.

So, this is a bug with fvwm handling mouse events? Their bug-submitter seems to be broken, so I should maybe send a mail?

Thanks again,

EE
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Wed Dec 14, 2011 10:53 pm    Post subject: Reply with quote

As requested, below is the entire xev info for the Audacious window(s). I am clicking one window, mousing over to the other, clicking that, etc. Here they are step by step. I'll identify the playlist as "window2" and the main window as "window1." So:

Primary-click title bar window2, drag a bit, let go:
Code:
 $ xev -id 0x2e00008

VisibilityNotify event, serial 13, synthetic NO, window 0x2e00008,
    state VisibilityPartiallyObscured

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (18,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (17,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (16,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (15,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (14,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (13,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (12,40), width 1, height 76, count 0

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (11,40), width 1, height 76, count 0

VisibilityNotify event, serial 13, synthetic NO, window 0x2e00008,
    state VisibilityUnobscured

Expose event, serial 13, synthetic NO, window 0x2e00008,
    (0,40), width 11, height 76, count 0

Primary click window1, after primary-clicking window2, dragging around, release (not, that in this case, even though the pointer is placed over window1, it's window2 that moves):
Code:
$ xev -id 0x2e00008

EnterNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33553146, (0,11), root:(1645,11),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus NO, state 16

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  4294967198 0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

LeaveNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33554149, (49,3), root:(1694,3),
    mode NotifyGrab, detail NotifyAncestor, same_screen YES,
    focus NO, state 272

FocusIn event, serial 13, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyNonlinear

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  93  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

EnterNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33554153, (49,3), root:(1694,3),
    mode NotifyUngrab, detail NotifyAncestor, same_screen YES,
    focus YES, state 272

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x139 (_NET_WM_USER_TIME), time 33554155, state PropertyNewValue

LeaveNotify event, serial 14, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33560658, (-2,28), root:(1643,28),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus YES, state 16

FocusOut event, serial 14, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyNonlinear
secondary-click window1 (re-setting the pointer) and primary-clicking window1, dragging, and release:
Code:
$ xev -id 0x2e00008

EnterNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33609049, (2,3), root:(1647,3),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus NO, state 16

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  4294967198 0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

LeaveNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33609876, (54,6), root:(1699,6),
    mode NotifyGrab, detail NotifyAncestor, same_screen YES,
    focus NO, state 1040

FocusIn event, serial 13, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyNonlinear

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  93  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

FocusOut event, serial 13, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyInferior

EnterNotify event, serial 13, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33609880, (54,6), root:(1699,6),
    mode NotifyUngrab, detail NotifyAncestor, same_screen YES,
    focus NO, state 1040

KeymapNotify event, serial 13, synthetic NO, window 0x0,
    keys:  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x139 (_NET_WM_USER_TIME), time 33610034, state PropertyNewValue

FocusOut event, serial 13, synthetic NO, window 0x2e00008,
    mode NotifyGrab, detail NotifyNonlinearVirtual

LeaveNotify event, serial 14, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33610060, (54,6), root:(1699,6),
    mode NotifyGrab, detail NotifyNonlinear, same_screen YES,
    focus NO, state 16

VisibilityNotify event, serial 14, synthetic NO, window 0x2e00008,
    state VisibilityPartiallyObscured

FocusIn event, serial 14, synthetic NO, window 0x2e00008,
    mode NotifyUngrab, detail NotifyNonlinearVirtual

KeymapNotify event, serial 14, synthetic NO, window 0x0,
    keys:  57  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

VisibilityNotify event, serial 14, synthetic NO, window 0x2e00008,
    state VisibilityUnobscured

Expose event, serial 14, synthetic NO, window 0x2e00008,
    (0,6), width 275, height 110, count 0

EnterNotify event, serial 14, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33613369, (0,7), root:(1645,7),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus NO, state 16

KeymapNotify event, serial 14, synthetic NO, window 0x0,
    keys:  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

FocusIn event, serial 14, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyInferior

KeymapNotify event, serial 14, synthetic NO, window 0x0,
    keys:  93  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

LeaveNotify event, serial 14, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33614335, (36,4), root:(1681,4),
    mode NotifyGrab, detail NotifyAncestor, same_screen YES,
    focus YES, state 272

EnterNotify event, serial 14, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33614335, (36,4), root:(1681,4),
    mode NotifyUngrab, detail NotifyAncestor, same_screen YES,
    focus YES, state 272

KeymapNotify event, serial 14, synthetic NO, window 0x0,
    keys:  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

PropertyNotify event, serial 14, synthetic NO, window 0x2e00008,
    atom 0x139 (_NET_WM_USER_TIME), time 33614338, state PropertyNewValue

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,11), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 14, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614506, state PropertyNewValue

ConfigureNotify event, serial 14, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,11), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,12), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614532, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,12), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,14), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614532, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,14), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1634,15), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614534, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1634,15), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1633,16), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614580, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1633,16), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1632,17), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614580, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1632,17), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1631,19), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614580, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1631,19), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1630,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614581, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1630,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1629,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614581, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1629,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614581, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,22), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614617, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,22), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1627,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614618, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1627,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1626,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614618, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1626,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614619, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,25), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614629, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,25), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1624,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614650, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1624,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1623,27), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614651, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1623,27), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1622,27), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614676, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1622,27), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1622,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614887, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1622,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1623,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614913, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1623,26), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1624,25), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614914, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1624,25), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614944, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1625,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1627,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614953, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1627,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614954, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1628,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1630,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614963, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1630,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1631,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614963, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1631,24), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1632,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614982, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1632,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1633,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614983, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1633,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33614983, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,23), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,22), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615048, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,22), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,22), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615072, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,21), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615118, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,20), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,19), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615119, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,19), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,18), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615162, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,18), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,18), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,17), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615165, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,17), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,16), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615202, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,16), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,15), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615203, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,15), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,14), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615245, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,14), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,13), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615246, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,13), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,12), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615246, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,12), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,12), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,11), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615275, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,11), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615336, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

VisibilityNotify event, serial 15, synthetic NO, window 0x2e00008,
    state VisibilityPartiallyObscured

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615347, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1656,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

VisibilityNotify event, serial 15, synthetic NO, window 0x2e00008,
    state VisibilityUnobscured

Expose event, serial 15, synthetic NO, window 0x2e00008,
    (264,0), width 11, height 116, count 0

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1ea (_WIN_AREA), time 33615490, state PropertyNewValue

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

ConfigureNotify event, serial 15, synthetic YES, window 0x2e00008,
    event 0x2e00008, window 0x2e00008, (1645,0), width 275, height 116,
    border_width 0, above 0x40247d, override NO

LeaveNotify event, serial 15, synthetic NO, window 0x2e00008,
    root 0x15d, subw 0x0, time 33616657, (-3,46), root:(1642,46),
    mode NotifyNormal, detail NotifyNonlinear, same_screen YES,
    focus YES, state 16

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x139 (_NET_WM_USER_TIME), time 33617955, state PropertyNewValue

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x139 (_NET_WM_USER_TIME), time 33618333, state PropertyNewValue

FocusOut event, serial 15, synthetic NO, window 0x2e00008,
    mode NotifyNormal, detail NotifyNonlinear

The same two actions as before - primary-click one window, drag, release, primary-click the other - with 'xmodmap -e "pointer 1 2 3 4 5 6 7 8 9"' set produces no output unless I primary-click the title-bar of window1 and move it around. double-primary-clicking an item on the playlist produces the following output:
Code:
$ xev -id 0x2e00008

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x12b (_NET_WM_NAME), time 34003037, state PropertyNewValue

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x27 (WM_NAME), time 34003037, state PropertyNewValue

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x12c (_NET_WM_ICON_NAME), time 34003037, state PropertyNewValue

PropertyNotify event, serial 13, synthetic NO, window 0x2e00008,
    atom 0x25 (WM_ICON_NAME), time 34003037, state PropertyNewValue

PropertyNotify event, serial 15, synthetic NO, window 0x2e00008,
    atom 0x1c2 (_NET_WM_VISIBLE_NAME), time 34003037, state PropertyNewValue

PropertyNotify event, serial 18, synthetic NO, window 0x2e00008,
    atom 0x1c1 (_NET_WM_ICON_VISIBLE_NAME), time 34003038, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x12b (_NET_WM_NAME), time 34003481, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x27 (WM_NAME), time 34003481, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x12c (_NET_WM_ICON_NAME), time 34003481, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x25 (WM_ICON_NAME), time 34003481, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x1c2 (_NET_WM_VISIBLE_NAME), time 34003482, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x1c1 (_NET_WM_ICON_VISIBLE_NAME), time 34003482, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x12b (_NET_WM_NAME), time 34006121, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x27 (WM_NAME), time 34006121, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x12c (_NET_WM_ICON_NAME), time 34006121, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x25 (WM_ICON_NAME), time 34006121, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x1c2 (_NET_WM_VISIBLE_NAME), time 34006122, state PropertyNewValue

PropertyNotify event, serial 19, synthetic NO, window 0x2e00008,
    atom 0x1c1 (_NET_WM_ICON_VISIBLE_NAME), time 34006122, state PropertyNewValue

So, would anybody mind taking a stab at what's going on here?

Thanks for the help.

EE
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Sat Dec 17, 2011 10:13 pm    Post subject: Reply with quote

UPDATE: the GTK folks have tracked down the error (the server is reading actual mouse-clicks, instead of logical ones, while other apps aren't, and there's miscommunication or something), and there's a post here. How can I submit it to get into the gentoo tree?

Cheers,

EE
Back to top
View user's profile Send private message
Chiitoo
Administrator
Administrator


Joined: 28 Feb 2010
Posts: 2573
Location: Here and Away Again

PostPosted: Sun Dec 18, 2011 12:24 am    Post subject: Reply with quote

Greetings!


I guess you could try patching it yourself, for now, and see if it works for you.

It should be rather easy I guess, even if you haven't done it before. I've only done it myself a few times, that is, meddled with patching and modifying ebuilds, so I can't really say if it would work as is or not, and shouldn't try to advice on it as great documentation to do just that exist.

But it was a lot easier than I thought, that much I can say.


Stuff on ebuilds (it's not that I wrote anything from scratch, I merely modified already existing ones, but this place here did help quite a bit to understand stuff):
    http://devmanual.gentoo.org/ebuild-writing/
As for getting stuff into the tree here, there is:
    https://bugs.gentoo.org/

Sorry if what I'm saying is obvious, and if I missed your point, but I do hope this helps. ^^;
_________________
Kindest of regardses.
Back to top
View user's profile Send private message
ExecutorElassus
Veteran
Veteran


Joined: 11 Mar 2004
Posts: 1435
Location: Berlin, Germany

PostPosted: Sun Dec 18, 2011 12:59 am    Post subject: Reply with quote

I've patched ebuilds as well. My problem here, though, is that I'm not even sure which file needs patching. If it's something deep within the source tree (which only exists in /var/tmp during emerging), I'm hesitant. I'd feel much safer posting it to bugzilla, but I'm not even sure which package would need the patch (the linked bug report and patch isn't very descriptive).

Anyway, I'll wait and see.

Thanks,

EE
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum