소스 검색

textbox scroll fix

John Dodis 1 년 전
부모
커밋
e4bfef44c7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ui2d/ui2d.lua

+ 1 - 1
ui2d/ui2d.lua

@@ -939,7 +939,7 @@ function UI2D.TextBox( name, num_visible_chars, text )
 	UpdateLayout( bbox )
 
 	local scroll = 0
-	if active_textbox then
+	if active_textbox and active_textbox.id == cur_window.id .. name then
 		scroll = active_textbox.scroll
 	end