Skip to content

window destructor is not called on quit

Johan G. requested to merge (removed):quit-fix into master

Continuing on #92 (closed), my understanding is that gtk quit only terminates the program (see) which means that the window destructor is never called.

This leaves us with 2 options, either force the window to close on quit to call its destructor, or move the previous destructor function into the shutdown override. This MR implements the latter.

Merge request reports