LBPUnion / UnionPatcher

A tool for LittleBigPlanet that patches the server urls to a custom url.
GNU General Public License v3.0
26 stars 12 forks source link

Fix application closing when choosing mode on Windows #19

Closed logantgt closed 2 years ago

logantgt commented 2 years ago

When a new sub form is opened, the main form's Close() method is called, which halts the entire application on Windows. Instead, we create an instance of the sub form, and bind its Closed event to an event handler that will halt the entire application.

We can then hide the main form, rather than closing it completely, which resolves the issue and allows the app to run as intended.