
Hello, In case of Ctrl + S the progress dialog is displayed from a background thread and the exact display moment cannot be controlled. A solution will be to bypass the progress dialog in case of the operations of a custom protocol and keep it only for the built-in ones (HTTP, HTTPS, FTP, etc). This allows you to control the display of your own progress dialog if such a dialog is needed for a custom protocol. Regards, Sorin Eliot Kimber wrote:
This is using V9 on OS X Tiger.
My URI handler plugin puts up a dialog on save to capture information needed to commit the file back to the repository.
If I do File->Save or click the save button, then I get the usual "save in progress" dialog with my dialog above it. However, if I do "ctrl+s" to save then sometimes my dialog comes up under the progress dialog and I can't figure out any way to bring it to the front.
I tried doing this:
CommitDialog.toFront(); CommitDialog.setVisible(true);
But it appeared to have no effect;
Is there a solution to this?
Thanks,
Eliot