Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2006-04-01 04:59:59 +0400
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2006-04-01 04:59:59 +0400
commita85e60f6cb5fea130785ea3d6003fadec17dc1ba (patch)
treeffe8a402f19efc05c54585ea8c705d84d54211b3
parentf0662a1194005ecca57c090dccd39dc742444865 (diff)
2006-03-31 Peter Dennis Bartok <pbartok@novell.com>
* XplatUIX11.cs: Enable clipping again now that the libgdiplus bug is fixed svn path=/trunk/mcs/; revision=58875
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog5
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
index 5e9756bdb5b..5b6a8e67358 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-31 Peter Dennis Bartok <pbartok@novell.com>
+
+ * XplatUIX11.cs: Enable clipping again now that the libgdiplus
+ bug is fixed
+
2006-03-31 Jackson Harper <jackson@ximian.com>
* XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs
index 9d002a4e563..8488361d680 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs
@@ -3534,7 +3534,7 @@ namespace System.Windows.Forms {
if (client) {
hwnd.client_dc = Graphics.FromHwnd (hwnd.client_window);
- //hwnd.client_dc.SetClip(hwnd.invalid);
+ hwnd.client_dc.SetClip(hwnd.invalid);
paint_event = new PaintEventArgs(hwnd.client_dc, hwnd.invalid);
hwnd.expose_pending = false;