Comment 5 for bug 1671424

Revision history for this message
Daniel d'Andrada (dandrader) wrote :

qtmir always destroys a window if it doesn't do so itself after being requested to close.

Specially on desktop, requesting a window to close doesn't necessarily mean it should destroy itself. It's a common idiom for an application to just hide it instead, so it can be reused next time it's needed (particularly for child windows).

Some might even stay around and just popup a dialog if there's modified content that hasn't been saved yet.

So on desktop we should just send the close request without further expectations. On phone though, we should keep the current behavior of forcibly destroying the window if it doesn't comply after some time.

I wouldn't mix this bug with gtk+