1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-02 11:34:08 +02:00

Fix ApplicationExit event not running

This commit is contained in:
chylex 2016-04-12 13:47:49 +02:00
parent ef0b699731
commit f5f0d0aeed

View File

@ -68,12 +68,12 @@ private static void Main(){
#endif
});
Application.Run(new FormBrowser());
Application.ApplicationExit += (sender, args) => {
UserConfig.Save();
Cef.Shutdown();
};
Application.Run(new FormBrowser());
}
}
}