executeAsModal.reportProgress limited number of lines?

Hello,

I noticed that reportProgress window can take maximum three lines of strings using \n

            executionContext.reportProgress({
                value: psdFiles.indexOf(file)*perc,
                "commandName": `File: ${name}\n Action: ${currentAction}\nFiles: ${currentFile}/${psdFiles.length}\nDone: ${currentDone}%`});

I want to put into dialog

File name,
Current Action
Current file/Number of files being process
Done percentage

is it possible to extend dialog size?

Sorry, I don’t know the answer, but may I suggest to put file ratio and percentage to the same line? They are basically the same value anyway. Or is that percentage for the currently processed single file? If so, then scratch my suggestion :smiley:

In any case, maybe someone else knows the answer to your specific question :slight_smile:

@Karmalakas
Well, having multiple things on the same line is also a problem. Every line that is wider than the dialogue will kill all other lines.

So we are also limited by number of strings per line :cry: