136796c6ef
- Update to 2.6.6 * fvwm features: - Support for Russian from Ivan Gayevskiy. - EnvMatch supports infostore variables. - The option "forget" to the Maximize command allows to unmaximize a window without changing its size and position. - Windows shaded to a corner (NW, NE, SW, SE) are reduced to a small square. - New option "!raise" to the WarpToWindow command. - The new extended variables $[wa.x], $[wa.y], $[wa.width], $[wa.height] can be used to get the geometry of the EWMH working area, and $[dwa.x], $[dwa.y], $[dwa.width], $[dwa.height] can be used to get the geometry of the EWMH dynamic working area. - The Resize commands accept "wa" or "da" as a suffix of the width or height value. If present, the value is a percentage of the width or height of the EWMH working area or the EWMH dynamic working area. - Fvwm is much more resilient against applications that flood the window manager with repeated events. * New module features: - FvwmForm supports separator lines. - New FvwmIconMan options: IconAndSelectButton IconAndSelectColorset * Bug fixes: - Provide a wrapper for the deprecation of XKeycodeToKeysym and use XkbKeycodeToKeysym() where appropriate. - fvwm-menu-desktop is re-written and provides better support of the XDG menu specification. OBS-URL: https://build.opensuse.org/request/show/417830 OBS-URL: https://build.opensuse.org/package/show/X11:windowmanagers/fvwm2?expand=0&rev=33
42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
---
|
|
fvwm/stack.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- fvwm/stack.c
|
|
+++ fvwm/stack.c 2016-08-02 13:46:46.357086943 +0000
|
|
@@ -115,7 +115,7 @@ static void dump_stack_ring(void)
|
|
t1 = t1->stack_next)
|
|
{
|
|
fprintf(stderr," l=%d fw=%p f=0x%08x '%s'\n", t1->layer,
|
|
- t1, (int)FW_W_FRAME(t1), t1->name.name);
|
|
+ t1, FW_W_FRAME(t1), t1->name.name);
|
|
}
|
|
|
|
return;
|
|
@@ -204,14 +204,14 @@ void verify_stack_ring_consistency(void)
|
|
fprintf(
|
|
stderr,"vsrc: window already died:"
|
|
" fw=%p w=0x%08x '%s'\n",
|
|
- t1, (int)FW_W_FRAME(t1), t1->name.name);
|
|
+ t1, FW_W_FRAME(t1), t1->name.name);
|
|
}
|
|
else if (i >= last_index)
|
|
{
|
|
fprintf(
|
|
stderr, "vsrc: window is at wrong position"
|
|
" in stack ring: fw=%p f=0x%08x '%s'\n",
|
|
- t1, (int)FW_W_FRAME(t1),
|
|
+ t1, FW_W_FRAME(t1),
|
|
t1->name.name);
|
|
dump_stack_ring();
|
|
fprintf(stderr,"dumping X stacking order:\n");
|
|
@@ -227,7 +227,7 @@ void verify_stack_ring_consistency(void)
|
|
{
|
|
fprintf(
|
|
stderr, " f=0x%08x\n",
|
|
- (int)children[i]);
|
|
+ children[i]);
|
|
break;
|
|
}
|
|
}
|