Compare commits
No commits in common. "af3a291536fd86e9b563dd38cab0741dd41c6eea" and "cf075853611d1593a98d34e3dd807606f6ccf20c" have entirely different histories.
af3a291536
...
cf07585361
@ -110,19 +110,9 @@ internal class EntryCell(private val resources: ResourceBundle, private val conf
|
||||
)
|
||||
)
|
||||
|
||||
val definition = when {
|
||||
entry.cedictDefinitions.isNotEmpty() -> entry.cedictDefinitions.joinToString(
|
||||
separator = " / "
|
||||
) { it.joinToString(separator = "; ") }
|
||||
|
||||
entry.crossStraitsDefinitions.isNotEmpty() -> entry.crossStraitsDefinitions.joinToString(
|
||||
separator = " / "
|
||||
) { it.definition }
|
||||
entry.moedictDefinitions.isNotEmpty() -> entry.moedictDefinitions.joinToString(
|
||||
separator = " / "
|
||||
) { it.definition }
|
||||
else -> error("No definition for entry")
|
||||
}
|
||||
val definition = entry.cedictDefinitions.joinToString(
|
||||
separator = " / "
|
||||
) { it.joinToString(separator = "; ") }
|
||||
labelDefinition.text = definition
|
||||
|
||||
contextMenu = createContextMenuForEntry(entry, resources)
|
||||
|
@ -12,7 +12,6 @@ import javafx.fxml.FXML
|
||||
import javafx.scene.control.Label
|
||||
import javafx.scene.control.ListView
|
||||
import javafx.scene.control.ProgressIndicator
|
||||
import javafx.scene.control.Tab
|
||||
import javafx.scene.control.TabPane
|
||||
import javafx.scene.input.ContextMenuEvent
|
||||
import javafx.scene.layout.FlowPane
|
||||
@ -44,9 +43,6 @@ class DetailsController(private val model: Model, private val config: Config) {
|
||||
@FXML
|
||||
private lateinit var tabPaneDetails: TabPane
|
||||
|
||||
@FXML
|
||||
private lateinit var tabCharacters: Tab
|
||||
|
||||
@FXML
|
||||
private lateinit var webViewDefinition: WebView
|
||||
|
||||
@ -156,15 +152,6 @@ class DetailsController(private val model: Model, private val config: Config) {
|
||||
|
||||
lazyUpdateTabContent(tabPaneDetails.selectionModel.selectedItem.id)
|
||||
}
|
||||
|
||||
tabCharacters.disableProperty().bind(
|
||||
Bindings.createBooleanBinding(
|
||||
{
|
||||
(model.selectedEntry.value?.traditionalProperty?.value?.length ?: 0) < 2
|
||||
},
|
||||
model.selectedEntry
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
private fun initializeListViewWords() {
|
||||
|
@ -37,8 +37,6 @@ class PreferencesDialog(
|
||||
}
|
||||
|
||||
val root = fxmlLoader.load(javaClass.getResourceAsStream("/fxml/dialogs/preferences.fxml")) as DialogPane
|
||||
root.prefHeightProperty().bind(dialogPane.scene.heightProperty())
|
||||
root.prefWidthProperty().bind(dialogPane.scene.widthProperty())
|
||||
|
||||
dialogPane = root
|
||||
title = "Settings"
|
||||
|
@ -35,7 +35,7 @@
|
||||
<ProgressIndicator fx:id="progressIndicatorWords" visible="false"/>
|
||||
</StackPane>
|
||||
</Tab>
|
||||
<Tab fx:id="tabCharacters" id="tabCharacters" closable="false" text="%tab.characters">
|
||||
<Tab id="tabCharacters" closable="false" text="%tab.characters">
|
||||
<StackPane>
|
||||
<ListView fx:id="listViewCharacters"/>
|
||||
<Label fx:id="labelNoCharactersFound" text="%list.no_characters_found" textAlignment="CENTER"
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user