remove theme command for now

This commit is contained in:
Florian Stinglmayr 2024-11-08 09:07:42 +01:00
parent 540c80f292
commit 5405d31ed1

View File

@ -61,6 +61,7 @@ public partial class MainWindow : Window {
this.NoMarketBuy.IsOn = Config.Global.IgnoreMarketBuy; this.NoMarketBuy.IsOn = Config.Global.IgnoreMarketBuy;
this.NoFleetCarrier.IsOn = Config.Global.IgnoreFleetCarrier; this.NoFleetCarrier.IsOn = Config.Global.IgnoreFleetCarrier;
/*
// Apply theme // Apply theme
try { try {
AddCustomThemes(); AddCustomThemes();
@ -92,6 +93,7 @@ public partial class MainWindow : Window {
Config.Global.Colour = "Amber"; Config.Global.Colour = "Amber";
Config.Global.Theme = "Dark"; Config.Global.Theme = "Dark";
} }
*/
journal = new PlayerJournal(Config.Global.JournalLocation); journal = new PlayerJournal(Config.Global.JournalLocation);
@ -101,6 +103,7 @@ public partial class MainWindow : Window {
journallocation.Text = Config.Global.JournalLocation; journallocation.Text = Config.Global.JournalLocation;
} }
/*
private void AddCustomThemes() { private void AddCustomThemes() {
Dictionary<string, Color> colorThemes = new() { Dictionary<string, Color> colorThemes = new() {
//{ "HouseSalus", Color.FromRgb(0xBC, 0x94, 0x39) }, //{ "HouseSalus", Color.FromRgb(0xBC, 0x94, 0x39) },
@ -139,6 +142,7 @@ public partial class MainWindow : Window {
); );
} }
} }
*/
private void InitialiseTime() { private void InitialiseTime() {
DateTime today = DateTime.Today; DateTime today = DateTime.Today;