https://bugs.kde.org/show_bug.cgi?id=356523

--- Comment #17 from Thomas Lübking <thomas.luebk...@gmail.com> ---
This alone should do (and not even be required), but I guess there there's more
to it in the SNI case, like the widget being destroyed and recreated (so you've
not moved this widget at all, but just told the WM to believe so)

In the latter case you could either carry over the last position (and move it
in QWidget geometries, sth. like ie.

oldPosition = oldWidget->pos();
....
QWidget *newWidget = new QWidget;
newWidget->move(oldPosition);
newWidget->show();


---

"Something else™" cannot move the widget as eg. the WM doesn't know that this
window has been there before (or that it should restore that former geometry)

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to