Compare commits
2 Commits
6b6ef67122
...
15cbbb1bac
Author | SHA1 | Date | |
---|---|---|---|
15cbbb1bac | |||
08840c4c2b |
@ -252,12 +252,12 @@ class RootController : Controller() {
|
|||||||
fun deleteTexture(data: Texture) {
|
fun deleteTexture(data: Texture) {
|
||||||
val dialogDelete = JFXOkayCancelAlert(
|
val dialogDelete = JFXOkayCancelAlert(
|
||||||
"Löschen",
|
"Löschen",
|
||||||
"Textur wirklich löschen?",
|
"Textur ${data.name} wirklich löschen?",
|
||||||
"-fx-button-type: RAISED; -fx-background-color: #2b7bbb; -fx-text-fill: #000000;"
|
"-fx-button-type: RAISED; -fx-background-color: #2b7bbb; -fx-text-fill: #000000;"
|
||||||
)
|
)
|
||||||
dialogDelete.okayAction = EventHandler {
|
dialogDelete.okayAction = EventHandler {
|
||||||
mvc.removeTextureFromView(data)
|
|
||||||
con.deleteTexture(data)
|
con.deleteTexture(data)
|
||||||
|
mvc.removeTextureFromView(data)
|
||||||
}
|
}
|
||||||
dialogDelete.cancelAction = EventHandler {
|
dialogDelete.cancelAction = EventHandler {
|
||||||
// Do nothing
|
// Do nothing
|
||||||
|
@ -50,7 +50,7 @@ internal data class InternalTexture(
|
|||||||
else -> throw ConnectionInvalidJsonException()
|
else -> throw ConnectionInvalidJsonException()
|
||||||
},
|
},
|
||||||
resolution = Pair(resolution[0], resolution[1]),
|
resolution = Pair(resolution[0], resolution[1]),
|
||||||
addedOn = GregorianCalendar(added_on[0], added_on[1] - 1, added_on[2]),
|
addedOn = GregorianCalendar(added_on[0], added_on[1], added_on[2]),
|
||||||
textureHash = Sha256(texture_hash)
|
textureHash = Sha256(texture_hash)
|
||||||
)
|
)
|
||||||
} catch (e: Exception) { // i Know, but no time :[]
|
} catch (e: Exception) { // i Know, but no time :[]
|
||||||
|
Loading…
Reference in New Issue
Block a user