Added several improvements XXII

This commit is contained in:
Robert Vokac 2024-01-20 13:47:27 +00:00
parent ff1bc7edca
commit 19033db1aa
No known key found for this signature in database
GPG Key ID: 693D30BEE3329055

View File

@ -205,9 +205,9 @@ public class TimeCalc {
if(image != null) {
// toasterManager.setToasterWidth(600);
// toasterManager.setToasterHeight(400);
toasterManager.showToaster( new ImageIcon(image), "Progress: " + (formatter2.format(percent*100)) + "%" );
toasterManager.showToaster( new ImageIcon(image), "Progress: " + (percentInt) + "%" );
} else {
toasterManager.showToaster( "Progress: " + (formatter2.format(percent*100)) + "%" );
toasterManager.showToaster( "Progress: " + (percentInt) + "%" );
}