Skip to content

Commit

Permalink
make app name consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Dec 9, 2024
1 parent dd498f7 commit 224388d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/FwLite/FwLiteDesktop/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(_mainPage)
{
Title = "FieldWorks lite " + AppVersion.Version
Title = "FieldWorks Lite " + AppVersion.Version
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void Initialize(IServiceProvider services)
link.SetPath($@"shell:AppsFolder\{package.Id.FamilyName}!App");
link.SetIconLocation(Path.Combine(package.InstalledLocation.Path, "logo_light.ico"), 0);
var file = (IPersistFile)link;
file.Save(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Fieldworks Lite.lnk"),
file.Save(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "FieldWorks Lite.lnk"),
false);
}

Expand Down

0 comments on commit 224388d

Please sign in to comment.