]> Pileus Git - ~andy/gtk/commitdiff
A further fix for big window support. Now also the test in testgtk works.
authorIvan, Wong Yat Cheung <email@ivanwong.info>
Sat, 12 Mar 2005 22:09:54 +0000 (22:09 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sat, 12 Mar 2005 22:09:54 +0000 (22:09 +0000)
2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>

* gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
for big window support. Now also the test in testgtk works.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gdk/win32/gdkgeometry-win32.c

index 4627cba8190c5bea56092dc4f1221419de586e41..8211db0effae46a347ffbabdff699fc32286745a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
+
+       * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
+       for big window support. Now also the test in testgtk works.
+
 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
index 4627cba8190c5bea56092dc4f1221419de586e41..8211db0effae46a347ffbabdff699fc32286745a 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
+
+       * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
+       for big window support. Now also the test in testgtk works.
+
 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
index 4627cba8190c5bea56092dc4f1221419de586e41..8211db0effae46a347ffbabdff699fc32286745a 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
+
+       * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
+       for big window support. Now also the test in testgtk works.
+
 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
index ea36ac9a149f7a5e6cc42b969805167b361e8675..deb8bfa0a657dfd5ce2dd09fc3e3982aabf9cc5b 100644 (file)
@@ -167,6 +167,8 @@ gdk_window_scroll (GdkWindow *window,
   tmp_list = obj->children;
   while (tmp_list)
     {
+      GDK_WINDOW_OBJECT(tmp_list->data)->x += dx;
+      GDK_WINDOW_OBJECT(tmp_list->data)->y += dy;
       gdk_window_postmove (tmp_list->data, &parent_pos, FALSE);
       tmp_list = tmp_list->next;
     }