YO,
My app uses 2 QMainWindows so as to get two icons down in the windows taskmanager. A second instance of QMainWindow gets created on request after the first starts up. The thing is, users often move the 1st main window to a second monitor after startup, but then when the 2nd QMainWindow is instanced, it shows on the 1st primary monitor instead of the expected 2nd, which is annoying.
I see QDesktopWidget allows me to gleen what monitor a widget is on, but not how to make a widget live on the second monitor.
If I make the second QMainWindow a child of the first, it loses the desirable taskmanager appearance.
Thanks for any multi-monitor tips.