Fix window titles

This commit is contained in:
Liza 2022-10-24 17:22:30 +02:00
parent 66a96f68b7
commit b1ccc268d7
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ namespace Pal.Client
{ {
private int _choice; private int _choice;
public AgreementWindow() : base("Pal Palace###PalPalaceAgreement") public AgreementWindow() : base("Palace Pal###PalPalaceAgreement")
{ {
Flags = ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoCollapse; Flags = ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoCollapse;
Size = new Vector2(500, 500); Size = new Vector2(500, 500);

View File

@ -23,7 +23,7 @@ namespace Pal.Client
private Vector4 _hoardColor; private Vector4 _hoardColor;
private string _connectionText; private string _connectionText;
public ConfigWindow() : base("Pal Palace - Configuration###PalPalaceConfig") public ConfigWindow() : base("Palace Pal - Configuration###PalPalaceConfig")
{ {
Size = new Vector2(500, 400); Size = new Vector2(500, 400);
SizeCondition = ImGuiCond.FirstUseEver; SizeCondition = ImGuiCond.FirstUseEver;

View File

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework> <TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>9.0</LangVersion> <LangVersion>9.0</LangVersion>
<Version>1.2.0.0</Version> <Version>1.3.0.0</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>