fixed a bug where quickslot and itemgrid would respond to scrollX instead of scrollY

This commit is contained in:
minjaesong
2021-09-20 01:29:59 +09:00
parent 4784956627
commit 3748f1ecf3
4 changed files with 8 additions and 10 deletions

View File

@@ -15,10 +15,10 @@ open class UITitleWallOfText(private val text: List<String>) : UICanvas() {
private val textAreaHMargin = 48
override var width = App.scr.width - UIRemoCon.remoConWidth - textAreaHMargin
override var width = 600
override var height = App.scr.height - textAreaHMargin * 2
private val textArea = UIItemTextArea(this,
UIRemoCon.remoConWidth, textAreaHMargin,
(App.scr.width - width) / 2, textAreaHMargin,
width, height
)