fritzing / fritzing-app

Fritzing desktop application
http://fritzing.org
Other
4.01k stars 828 forks source link

Autoroute dialog position with multiple displays. #3260

Closed deggle closed 2 years ago

deggle commented 8 years ago

On a multi monitor setup the autoroute dialog centres itself across all monitors, asnd in my case it's awkwardly split between screens. It's a very minor bug, but hopefully an equally simple fix - just a tweak to centre the dialog on current window dimensions rather than total display dimensions.

failiz commented 2 years ago

I cannot replicate this in 0.9.10 (Windows), see: image

The position is as desired in the code:

AutorouteProgressDialog progress(tr("Autorouting Progress..."), true, true, true, true, pcbSketchWidget, this);
    progress.setModal(true);
    progress.show();
    QRect pr = progress.frameGeometry();
    QRect wr = this->frameGeometry();
    progress.move(wr.right() - pr.width(), pr.top());
KjellMorgenstern commented 2 years ago

Using a multi-monitor setup on Linux, I have neither observed this.