search for: catherwood

Displaying 6 results from an estimated 6 matches for "catherwood".

2010 Jun 10
1
Using vpswitch with wall in 0.9
Hi, Vpswitch's "Go to specific viewport" commands don't currently work for me in 0.9. This patch fixes the problem for me. Thanks, Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/compiz/attachments/20100609/76e906be/attachment.html> -------------- next part -------------- A non-text attachment was
2010 Jun 10
1
putting to viewport in 0.9's Put plugin
Hi, It doesn't look to me like the Put plugin commands for putting to a viewport are wired up at the moment. There are also some widths and heights transposed. After this patch everything works for me. Thanks, Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/compiz/attachments/20100610/6812f821/attachment.htm>
2010 Jun 18
1
Two patches for Snap
Hi, There are a couple of problems with Snapping Windows that I tried to fix: (1) The snap to windows checkbox in ccsm has no effect because Snap treats any window with struts as an edge, and all windows have struts. I think it should be a test for dock windows. (2) Windows don't snap to the left edge because it has been erased. The right edge doesn't seem to get erased because it is
2010 Jul 22
0
Initializing active window lists in animation
Hi, We discussed this on IRC. I thought I would send in the patch, simple as it is. The issue is that PrivateAnimScreen's constructor in animation.cpp initializes mPluginActive twice and PrivateAnimWindow doesn't initialize its mPluginActive at all. I think the second initialization loop should be moved to the PrivateAnimWindow constructor. This fixes a bug for me where open window
2007 Nov 26
1
[PATCH] Don't draw shaded windows about to be destroyed
--- src/paint.c | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/paint.c b/src/paint.c index 00cbf73..4ddd332 100644 --- a/src/paint.c +++ b/src/paint.c @@ -193,7 +193,12 @@ paintOutputRegion (CompScreen *screen, if (w->destroyed) continue; - if (!w->shaded) + if (w->shaded) + { + if (w->id < 2) + continue; + } + else
2007 Nov 26
0
[PATCH] Update client list when destroying shaded windows
--- src/window.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/window.c b/src/window.c index 568373d..2133aed 100644 --- a/src/window.c +++ b/src/window.c @@ -2227,6 +2227,11 @@ destroyWindow (CompWindow *w) w->id = 1; w->mapNum = 0; + if (w->shaded) + { + updateClientListForScreen (w->screen); + } + w->destroyRefCnt--;