File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/com/inet/gradle/setup/dmg Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -527,10 +527,10 @@ private void applescript() throws IOException {
527527 applescript .setPlaceholder ( "executable" , firstExecutableName );
528528
529529 applescript .setPlaceholder ( "backgroundColor" , task .getBackgroundColor () );
530- applescript .setPlaceholder ( "windowWidth" , task .getWindowWidth (). toString () );
531- applescript .setPlaceholder ( "windowHeight" , task .getWindowHeight (). toString () );
532- applescript .setPlaceholder ( "iconSize" , task .getIconSize (). toString () );
533- applescript .setPlaceholder ( "fontSize" , task .getFontSize (). toString () );
530+ applescript .setPlaceholder ( "windowWidth" , "" + task .getWindowWidth () );
531+ applescript .setPlaceholder ( "windowHeight" , "" + task .getWindowHeight () );
532+ applescript .setPlaceholder ( "iconSize" , "" + task .getIconSize () );
533+ applescript .setPlaceholder ( "fontSize" , "" + task .getFontSize () );
534534
535535 if ( task .getBackgroundImage () != null ) {
536536 String name = task .getBackgroundImage ().getName ();
You can’t perform that action at this time.
0 commit comments