Replaced + Button by AddButton
This commit is contained in:
parent
23bb4c1b41
commit
6b68f1a1f5
|
@ -2,6 +2,7 @@ package net.dankito.banking.ui.javafx.controls
|
|||
|
||||
import javafx.geometry.Pos
|
||||
import net.dankito.banking.ui.presenter.MainWindowPresenter
|
||||
import net.dankito.utils.javafx.ui.controls.addButton
|
||||
import net.dankito.utils.javafx.ui.extensions.fixedHeight
|
||||
import net.dankito.utils.javafx.ui.extensions.fixedWidth
|
||||
import tornadofx.*
|
||||
|
@ -21,7 +22,7 @@ open class AccountsView(protected val presenter: MainWindowPresenter) : View() {
|
|||
}
|
||||
}
|
||||
|
||||
right = button("+") {
|
||||
right = addButton(fontSize = 14.0) {
|
||||
fixedHeight = 32.0
|
||||
fixedWidth = 32.0
|
||||
|
||||
|
|
Loading…
Reference in New Issue