Hi! When I run the following program and press the s
key I’m not seeing the suggested filename in the dialog that pops up:
import org.openrndr.application
import org.openrndr.dialogs.saveFileDialog
fun main() = application {
program {
keyboard.keyDown.listen {
if (it.name == "s") {
saveFileDialog(
suggestedFilename = "verySuggestiveFilename",
supportedExtensions = listOf("svg")
) { println(it) }
}
}
}
}
I don’t know if the issue is related to the OS, my tiling window manager, or a general issue. I remember it working in the past. Could anyone give it a try?