WIP desktop client for Chatto reimplemented in ScalaFX and Sapphire Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
463 B

package wow.doge.chatto.controller
import javafx.fxml.FXML
import javafx.scene.control.Label
import javax.inject.Inject
import wow.doge.chatto.ApplicationName
class WorkspaceController @Inject() (applicationName: ApplicationName)
extends AbstractViewController {
// @Inject
// var applicationName: ApplicationName = _
@FXML
var infoLabel: Label = _
override def didGainVisibilityFirstTime() {
infoLabel.setText(applicationName.name)
}
}