Browse Source

Added OnRenderContent to Rect to TextView

Mark Sibly 8 years ago
parent
commit
990f1e84f3
1 changed files with 5 additions and 2 deletions
  1. 5 2
      modules/mojox/textview.monkey2

+ 5 - 2
modules/mojox/textview.monkey2

@@ -937,11 +937,14 @@ Class TextView Extends ScrollableView
 	End
 	End
 	
 	
 	Method OnRenderContent( canvas:Canvas ) Override
 	Method OnRenderContent( canvas:Canvas ) Override
+		
+		OnRenderContent( canvas,VisibleRect )
+	End
+	
+	Method OnRenderContent( canvas:Canvas,clip:Recti ) Virtual
 
 
 		If App.KeyView=Self And Not _blinkTimer RestartBlinkTimer()
 		If App.KeyView=Self And Not _blinkTimer RestartBlinkTimer()
 		
 		
-		Local clip:=VisibleRect
-		
 		Local firstLine:=LineAtPoint( New Vec2i( 0,clip.Top ) ) 
 		Local firstLine:=LineAtPoint( New Vec2i( 0,clip.Top ) ) 
 		Local lastLine:=LineAtPoint( New Vec2i( 0,clip.Bottom-1 ) )+1
 		Local lastLine:=LineAtPoint( New Vec2i( 0,clip.Bottom-1 ) )+1