diff options
Diffstat (limited to 'modules/engines')
-rwxr-xr-x | modules/engines/ms-windows/ChangeLog.old | 4 | ||||
-rwxr-xr-x | modules/engines/ms-windows/xp_theme.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/engines/ms-windows/ChangeLog.old b/modules/engines/ms-windows/ChangeLog.old index 47029005b1..08dac702de 100755 --- a/modules/engines/ms-windows/ChangeLog.old +++ b/modules/engines/ms-windows/ChangeLog.old @@ -1,3 +1,7 @@ +2003-09-16 Dom Lachowicz <cinamod@hotmail.com>
+
+ * src/xp_theme.c: Ignore cliprect for now
+
2003-09-15 Raymond Penners <raymond@dotsphinx.com>
* === Released 0.4.1 ===
diff --git a/modules/engines/ms-windows/xp_theme.c b/modules/engines/ms-windows/xp_theme.c index b43b2bd8cd..cd782b9cf4 100755 --- a/modules/engines/ms-windows/xp_theme.c +++ b/modules/engines/ms-windows/xp_theme.c @@ -608,6 +608,7 @@ xp_theme_draw(GdkWindow *win, XpThemeElement element, GtkStyle *style, rect.right = rect.left + width; rect.bottom = rect.top + height; +#if 0 if (area) { clip.left = area->x - xoff; @@ -618,6 +619,7 @@ xp_theme_draw(GdkWindow *win, XpThemeElement element, GtkStyle *style, pClip = &clip; } else +#endif { pClip = NULL; } |