소스 검색

scroll text content when cursor outside

ncannasse 11 년 전
부모
커밋
c8f2345118
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      h2d/comp/Input.hx

+ 6 - 0
h2d/comp/Input.hx

@@ -66,7 +66,13 @@ class Input extends Interactive {
 	}
 	
 	function set_cursorPos(v:Int) {
+		textAlign(tf);
 		cursor.x = tf.x + tf.calcTextWidth(value.substr(0, v)) + extLeft();
+		if( cursor.x > width - 4 ) {
+			var dx = cursor.x - (width - 4);
+			tf.x -= dx;
+			cursor.x -= dx;
+		}
 		return cursorPos = v;
 	}