Your message dated Thu, 28 May 2009 00:30:56 +0200
with message-id <1243463456.10455.8.ca...@tomoyo>
and subject line Re: Bug#530800: metacity ignores Initial state in WM_HINTS
has caused the Debian Bug report #530800,
regarding metacity ignores Initial state in WM_HINTS
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
530800: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=530800
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: metacity
Version: 2.22.0-2
When you execute "xterm -iconic" in gnome with the metacity
window-manager of the given version running, the resulting xterm
window is not displayed in iconic state(minimized), but in
normal state. With the xprops tool however, you can see, that the
initial state of WM_HINTS property is "Iconic State".
I expect the window to show up in iconic state(minimized).
I found this bug using Debian GNU/Linux 5.0(lenny), kernel 2.6.28.4.
These are the commands I used:
$ xterm -iconic &
$ xprop
...
WM_HINTS(WM_HINTS):
Client accepts input or input focus: True
Initial state is Iconic State.
...
This bug seems to be fixed in the upstream release metacity-2.24.0.
I suggest using the following patch, which is taken from the
upstream release metacity-2.24.0:
--- metacity-2.22.0/src/core/window.c.org 2008-03-09 22:49:15.000000000
+0100
+++ metacity-2.22.0/src/core/window.c 2009-05-27 11:52:59.000000000 +0200
@@ -796,8 +796,11 @@
* However, we shouldn't unminimize windows here when opening
* a new display because that breaks passing _NET_WM_STATE_HIDDEN
* between window managers when replacing them; see bug 358042.
+ *
+ * And we shouldn't unminimize windows if they were initially
+ * iconic.
*/
- if (!display->display_opening)
+ if (!display->display_opening && !window->initially_iconic)
unminimize_window_and_all_transient_parents (window);
meta_error_trap_pop (display, FALSE); /* pop the XSync()-reducing trap */
--- End Message ---
--- Begin Message ---
Version: 1:2.24.0-1
Le mercredi 27 mai 2009 à 23:47 +0200, Benno a écrit :
> This bug seems to be fixed in the upstream release metacity-2.24.0.
> I suggest using the following patch, which is taken from the
> upstream release metacity-2.24.0:
We don’t fix minor bugs in the stable release, sorry.
--
.''`. Josselin Mouette
: :' :
`. `' “I recommend you to learn English in hope that you in
`- future understand things” -- Jörg Schilling
signature.asc
Description: Ceci est une partie de message numériquement signée
--- End Message ---