mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 12:05:07 +00:00
LibGUI: Added window creation callback to GApplication/GWindow
Added a window creation callback to GApplication that gets called by GWindow which will reset any pending exit request in the CEventLoop. This is to prevent a bug which prevents your application from starting up if you had a message box or other dialog before showing your main application form. The bug was triggered by there being no more visible windows which was triggering a premature quit().
This commit is contained in:
parent
5311f8fae1
commit
51e655f903
3 changed files with 8 additions and 0 deletions
|
@ -84,6 +84,7 @@ void GWindow::show()
|
|||
apply_icon();
|
||||
|
||||
reified_windows.set(m_window_id, this);
|
||||
GApplication::the().did_create_window({});
|
||||
update();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue