Skip to content

Commit

Permalink
Misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AJLeuer committed Jan 6, 2022
1 parent b4fb626 commit dee6547
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GHelper/GHelper/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
LogManager.Log("Launching GHelper application.");
window.Referent = new MainWindow { GHubSettingsFileService = gHubSettingsFileService};
window.Referent.Activate();
this.window.Referent.Closed += HandleImminentExit;
window.Referent.Closed += HandleImminentExit;

gHubSettingsFileService.Start();

Expand Down
9 changes: 9 additions & 0 deletions GHelper/GHelper/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions GHelper/GHelper/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@
<data name="FileExtensionTIFF" xml:space="preserve">
<value>.tiff</value>
</data>
<data name="FileExtensionTIFFAlternate" xml:space="preserve">
<value>.tif</value>
</data>
<data name="FileExtensionTGA" xml:space="preserve">
<value>.tga</value>
</data>
Expand Down
2 changes: 1 addition & 1 deletion GHelper/GHelper/ViewModel/ApplicationViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override string? Type
{
if ((Application is not null) && (Application.GetType().IsSubclassOf(typeof(Application))))
{
return Application?.GetType().Name.ConvertPascalCaseToSentence();
return Application.GetType().Name.ConvertPascalCaseToSentence();
}
else
{
Expand Down

0 comments on commit dee6547

Please sign in to comment.