Accepting request 417830 from home:WernerFink:branches:X11:windowmanagers
- 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
2016-08-08 14:44:57 +02:00
|
|
|
---
|
|
|
|
fvwm/stack.c | 8 ++++----
|
|
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
|
2006-12-19 23:22:37 +01:00
|
|
|
--- fvwm/stack.c
|
2017-02-08 10:39:44 +01:00
|
|
|
+++ fvwm/stack.c 2017-02-07 10:55:25.816637544 +0000
|
|
|
|
@@ -114,7 +114,7 @@ static void dump_stack_ring(void)
|
2006-12-19 23:22:37 +01:00
|
|
|
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;
|
2017-02-08 10:39:44 +01:00
|
|
|
@@ -203,14 +203,14 @@ void verify_stack_ring_consistency(void)
|
2006-12-19 23:22:37 +01:00
|
|
|
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");
|
2017-02-08 10:39:44 +01:00
|
|
|
@@ -226,7 +226,7 @@ void verify_stack_ring_consistency(void)
|
2006-12-19 23:22:37 +01:00
|
|
|
{
|
|
|
|
fprintf(
|
|
|
|
stderr, " f=0x%08x\n",
|
|
|
|
- (int)children[i]);
|
|
|
|
+ children[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|