Hi,

I have two apps, one of which has to start _behind_ the other. I tried doing this using the `showMinimized()` call for the behind one, but this has an undesired side-effect: when switching to it later on, the application is 'animated' to maximum size.

The current code:

Qt Code:
  1. if( iAmMaster() )
  2. mainWindow->show();
  3. else
  4. mainWindow->showMinimized();
To copy to clipboard, switch view to plain text mode 

In both apps, I known the window handle of the other one.

Is there a better way?

Thanks!

xtofl