Fix: create tab repeatedly

This commit is contained in:
ryoii 2020-03-11 17:34:13 +08:00
parent eafc281bc2
commit 48405c678d

View File

@ -32,12 +32,14 @@ class PrimaryView : View() {
setCellFactory {
object : JFXListCell<BotModel>() {
var tab: Tab? = null
init {
onDoubleClick {
(center as TabPane).logTab(
tab?.select() ?: (center as TabPane).logTab(
text = item.uin.toString(),
logs = item.logHistory
).select()
).select().also { tab = it }
}
}