Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/Windows/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private void FillMenuItemsCustomMode(int defaultSelectedIndex)

if (CustomLauncher.MenuDisplayGlobalSettingsEntry && GlobalSettingsView != null)
{
MenuItems.Add(new MainViewMenuItem(GlobalSettingsView, "avares://Knossos.NET/Assets/general/menu_settings.png", "Options", "Change launcher and FSO engine settings"));
MenuItems.Add(new MainViewMenuItem(GlobalSettingsView, "avares://Knossos.NET/Assets/general/menu_settings.png", "Settings", "Change launcher and FSO engine settings"));
}

if (CustomLauncher.MenuDisplayDebugEntry && DebugView != null)
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/Views/CustomHomeView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<Button Content="Details" Name="ButtonDetails" Classes="Option" CommandParameter="details"
Width="86" Command="{Binding HardcodedButtonCommand}">
</Button>
<Button Margin="5,0,0,0" Name="ButtonSettings" Classes="Settings" Content="Settings" CommandParameter="settings"
<Button Margin="5,0,0,0" Name="ButtonSettings" Classes="Settings" Content="Advanced" CommandParameter="settings"
Width="86" Command="{Binding HardcodedButtonCommand}">
</Button>
</WrapPanel>
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/Views/CustomHomeView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public CustomHomeView()
Log.Add(Log.LogSeverity.Error, "CustomHomeView.Constructor()", ex);
}

//Home Buttons Custimizations
//Home Buttons Customizations
try
{
if (CustomLauncher.HomeButtonConfigs != null && CustomLauncher.HomeButtonConfigs.Any())
Expand Down