mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-10 10:34:06 +09:00
font fixes
This commit is contained in:
BIN
lib/TerrarumSansBitmap.jar
LFS
BIN
lib/TerrarumSansBitmap.jar
LFS
Binary file not shown.
@@ -123,7 +123,7 @@ class UIItemTextLineInput(
|
|||||||
|
|
||||||
private var fboUpdateLatch = true
|
private var fboUpdateLatch = true
|
||||||
|
|
||||||
private var currentPlaceholderText = ArrayList<Int>(placeholder().toCodePoints()) // the placeholder text may change every time you call it
|
private var currentPlaceholderText = CodepointSequence(placeholder().toCodePoints()) // the placeholder text may change every time you call it
|
||||||
|
|
||||||
|
|
||||||
private val btn1PosX; get() = posX
|
private val btn1PosX; get() = posX
|
||||||
@@ -259,7 +259,7 @@ class UIItemTextLineInput(
|
|||||||
* Only makes sense when the placeholder returns randomised texts
|
* Only makes sense when the placeholder returns randomised texts
|
||||||
*/
|
*/
|
||||||
fun refreshPlaceholder() {
|
fun refreshPlaceholder() {
|
||||||
currentPlaceholderText = ArrayList<Int>(placeholder().toCodePoints())
|
currentPlaceholderText = CodepointSequence(placeholder().toCodePoints())
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun inputStrobed(e: TerrarumKeyboardEvent) {
|
override fun inputStrobed(e: TerrarumKeyboardEvent) {
|
||||||
|
|||||||
Reference in New Issue
Block a user