mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
Reorganize auto-start and default feed reader settings
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
namespace FeedCenter.Options
|
||||
using System.Windows;
|
||||
using Common.Wpf.Extensions;
|
||||
|
||||
namespace FeedCenter.Options
|
||||
{
|
||||
public partial class GeneralOptionsPanel
|
||||
{
|
||||
@@ -32,8 +35,8 @@
|
||||
if (registerAsDefaultFeedReaderCheckBox.IsChecked.HasValue && settings.RegisterAsDefaultFeedReader != registerAsDefaultFeedReaderCheckBox.IsChecked.Value)
|
||||
settings.RegisterAsDefaultFeedReader = registerAsDefaultFeedReaderCheckBox.IsChecked.Value;
|
||||
|
||||
App.SetStartWithWindows(settings.StartWithWindows);
|
||||
App.SetDefaultFeedReader(settings.RegisterAsDefaultFeedReader);
|
||||
Application.Current.SetStartWithWindows(settings.StartWithWindows);
|
||||
SystemConfiguration.SetDefaultFeedReader(settings.RegisterAsDefaultFeedReader);
|
||||
}
|
||||
|
||||
public override string CategoryName
|
||||
|
||||
Reference in New Issue
Block a user