~ubuntu-branches/ubuntu/gutsy/compiz/gutsy-backports

« back to all changes in this revision

Viewing changes to debian/patches/024_add_config_notify.patch

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2007-10-06 18:00:15 UTC
  • mfrom: (0.51.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071006180015-lypv7upb93urv3xt
Tags: 1:0.6.0+git20071006-0ubuntu1
* new 0.6 git snapshot:
  - fix initial stacking (LP: #147943)
  - fix crash in grab hanlding in wobbly (LP: #125981)
* debian/patches/028_compiz_manager_blacklist:
  - add a missing i965 pci id (LP: #149751)
* debian/patches/029_default_options:
  - disable vsync by default here so that the compiz and
    libcompizconfig do not fight over the default
* debian/patches/024_add_config_notify.patch:
  - updated so that a extra configure notify is send in resizeWindow
    (LP: #140773)
* debian/patches/023_ignore_hints_when_maximized.patch:
  - removed, no longer needed with latest git (LP: #145843)
* debian/patches/030_fix_screensaver:
  - return InputOutput override_redirct windows in 
    findTopLevelWindowAtScreen(), this fixes the focus problem
    in gnome-screensaver (LP: #122549)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: compiz-0.5.2+git20070918/src/window.c
 
1
Index: ubuntu/src/window.c
2
2
===================================================================
3
 
--- compiz-0.5.2+git20070918.orig/src/window.c  2007-09-19 10:23:22.000000000 +0100
4
 
+++ compiz-0.5.2+git20070918/src/window.c       2007-09-19 10:26:05.000000000 +0100
5
 
@@ -2496,6 +2496,8 @@
6
 
            XMoveWindow (w->screen->display->display, w->frame,
 
3
--- ubuntu.orig/src/window.c    2007-10-06 17:31:12.000000000 +0200
 
4
+++ ubuntu/src/window.c 2007-10-06 17:39:40.000000000 +0200
 
5
@@ -2500,6 +2500,7 @@
7
6
                         w->attrib.x - w->input.left,
8
7
                         w->attrib.y - w->input.top);
9
 
+
10
 
+       sendConfigureNotify (w);
11
8
     }
 
9
+    sendConfigureNotify (w);
12
10
 
13
11
     return TRUE;
14
 
@@ -3729,6 +3731,8 @@
15
 
 
16
 
     configureXWindow (w, xwcm, xwc);
17
 
 
18
 
+    sendConfigureNotify (w);
19
 
+
20
 
     if (placed)
21
 
        w->placed = TRUE;
22
12
 }