From c4cc92a75561b8ac1988fec2ee7ed90bc7724298 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 14 Jun 2018 17:11:24 +0700 Subject: [PATCH] Experiment with user prompts --- source/net/filebot/ui/SupportDialog.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/net/filebot/ui/SupportDialog.java b/source/net/filebot/ui/SupportDialog.java index b80630d1..3f72ee10 100644 --- a/source/net/filebot/ui/SupportDialog.java +++ b/source/net/filebot/ui/SupportDialog.java @@ -25,7 +25,7 @@ public enum SupportDialog { @Override String getMessage(int renameCount) { - return String.format("

Thank you for using FileBot!


It has taken thousands of hours to develop this application. If it works well for you,
please purchase a license. It'll help make FileBot even better!

You've renamed %,d files.


", renameCount); + return String.format("

Thank you for using FileBot!


It has taken thousands of hours to develop this application. If it works well for you,
please purchase a license. It'll help make FileBot even better!

You've renamed %,d files.


", renameCount > 0 ? renameCount : 0); } @Override @@ -49,8 +49,7 @@ public enum SupportDialog { LICENSE.check(); return false; } catch (Throwable e) { - log.log(Level.WARNING, e::toString); - return false; + return true; } }