Cyber-Finn / Automated-Windsong-Lyre---an-unofficial-Genshin-Impact-plugin

A tool that allows you to play music in Genshin Impact and other games that allow Keyboard input for music
1 stars 0 forks source link

Fix: Lingering Process for "Windsong Lyre" after app is closed #5

Closed Cyber-Finn closed 4 months ago

Cyber-Finn commented 4 months ago

Description: There is a lingering process once the window closes. Currently requires manual closure. The following lines don't seem to be helping manage the process on closure:

private void formClosingEvent(object sender, FormClosingEventArgs e)
        {
            HandleBackgroundWorker_Close();
            backgroundWorker1.Dispose();
            _stillOpen = false;
            //terminate the current process (Further means of freeing up the resources, in case the others didnt work)
            Environment.Exit(0);
        }
Cyber-Finn commented 4 months ago

Resolved