show width x height, not the other way round

这个提交包含在:
Jannik 2019-06-14 11:18:58 +02:00
父节点 a3c03c4bc7
当前提交 86c05c0363
签署人:: Seil0
GPG 密钥 ID: E8459F3723C52C24
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -51,7 +51,7 @@ class RootController : Controller() {
val uuid = UUID.randomUUID()
val format = if (File(path).extension.toLowerCase() == "png") TextureFormat.PNG else TextureFormat.JPEG
val bimg = ImageIO.read(File(path)) //image for obtaining resolution
val resolution = Pair(bimg.height, bimg.width)
val resolution = Pair(bimg.width, bimg.height)
val cal = Calendar.getInstance() //calendar obj with current time
val hash = Sha256(data)

查看文件

@ -60,7 +60,7 @@ class MainViewController : Controller() {
}
}
// DetailView actions
// MainView actions
fun cvSearchAction(tags: ObservableList<String>) {
// show spinner, block ui