GNOME Bugzilla – Bug 517570
wnckprop fails to write geometry because of missing mainloop
Last modified: 2008-02-20 09:14:55 UTC
In response to bug 448183. It appears wnckprop has a bug when writing window properties. Basically the probelm is that there is no main loop when it tries to call set_geometry. Attaching a simple (maube too simple) patch in a sec.
Created attachment 105614 [details] [review] Run window prop writes in a Gtk main loop As promised
PS: The reason why I stuff the gtk_main_quit in a timeout handler is that I get warnings about a missing main loop otherwise.
It shouldn't be needed. If it doesn't work, it might mean there's a missing XSync() somewhere. Bah. Stupid bug in _wnck_set_window_geometry(): _wnck_error_trap_push (); XSendEvent (gdk_display, RootWindowOfScreen (screen), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev); _wnck_error_trap_push (); The second one should be a pop. I can't test the fix right now, but I expect it to work so I committed it. Please reopen if it doesn't work.
It works. Thanks.