mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-04-30 04:30:59 +00:00
fix: backward compatibility issues on plugin update (fixes #551)
This commit is contained in:
parent
8b7781f865
commit
6f259bf044
2 changed files with 3 additions and 3 deletions
|
|
@ -27,10 +27,10 @@ class ServiceConfigurableComponent {
|
|||
}
|
||||
|
||||
fun getSelectedService(): ServiceType {
|
||||
return serviceComboBox.item
|
||||
return serviceComboBox.selectedItem as ServiceType
|
||||
}
|
||||
|
||||
fun setSelectedService(serviceType: ServiceType?) {
|
||||
fun setSelectedService(serviceType: ServiceType) {
|
||||
serviceComboBox.selectedItem = serviceType
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue