catch exceptions thrown at printing images

This commit is contained in:
tibbi
2022-01-14 19:49:58 +01:00
parent 04619304c2
commit 137ff897b0

View File

@ -619,7 +619,11 @@ class MainActivity : SimpleActivity(), CanvasListener {
private fun printImage() {
val printHelper = PrintHelper(this)
printHelper.scaleMode = PrintHelper.SCALE_MODE_FIT
printHelper.printBitmap(getString(R.string.app_name), my_canvas.getBitmap())
try {
printHelper.printBitmap(getString(R.string.app_name), my_canvas.getBitmap())
} catch (e: Exception) {
showErrorToast(e)
}
}
private fun checkWhatsNewDialog() {