Make use of WFixedPanel for the config gui

This commit is contained in:
nea
2023-05-25 23:33:28 +02:00
parent c9ceb22858
commit ee765a4647
2 changed files with 31 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
package moe.nea.firmament.gui
import io.github.cottonmc.cotton.gui.widget.WPanel
import io.github.cottonmc.cotton.gui.widget.WWidget
class WFixedPanel() : WPanel() {
var child: WWidget
set(value) {
children.clear()
setSize(0, 0)
children.add(value)
}
get() = children.single()
constructor(child: WWidget) : this() {
this.child = child
}
override fun layout() {
setSize(0, 0)
super.layout()
}
override fun canResize(): Boolean = false
}