@@ -1,3 +1,8 @@
+2007-01-18 Jackson Harper <[email protected]>
+
+ * TextControl.cs: We can't skip tags if any part of the tag is
+ visible.
2007-01-18 Jonathan Pobst <[email protected]>
* ContainerControl.cs: Override OnLayout.
@@ -1916,7 +1916,7 @@ namespace System.Windows.Forms {
continue;
}
- if (((tag.X + tag.width) < (clip.Left - viewport_x)) || (tag.X > (clip.Right - viewport_x))) {
+ if (((tag.X + tag.width) < (clip.Left - viewport_x)) && (tag.X > (clip.Right - viewport_x))) {
tag = tag.next;