ribbons / RadioDownloader

An easy to use application for managing podcast subscriptions and downloads.
https://nerdoftheherd.com/tools/radiodld/
GNU General Public License v3.0
15 stars 11 forks source link

Window size and download sort order now maintained after application restart. #145

Closed ribbons closed 11 years ago

ribbons commented 11 years ago

Original report from Colin Dowse at 16:14:02 on 2011-04-23

Prior to version 0.20 the window size was remembered after a restart. This no longer happens.


Imported from Bug 467 in the NerdoftheHerd.com Bugzilla.

ribbons commented 11 years ago

Original comment from Matt Robinson at 17:24:10 on 2011-04-24

The workaround until this is fixed is to open the Main Options and choose 'OK', which will cause the window size to be saved as well.

ribbons commented 11 years ago

Original comment from Matt Robinson at 18:17:08 on 2011-04-29

Although the main AppInstance class was setting SaveMySettingsOnExit to true (which worked in VB.net) this wasn't actually saving the settings for some reason.

To resolve the problem, updated the application to call Save() in the Main method after the application message pump has terminated instead of setting SaveMySettingsOnExit in f9594be.

ribbons commented 11 years ago

Original comment from Matt Robinson at 19:45:41 on 2011-05-03

Re-worked the fix in e9f6eb0 to use the app framework shutdown event instead of having the call to Save() in the Main method.