Skip to content

Commit

Permalink
Changed version appendation to Pixi Case
Browse files Browse the repository at this point in the history
  • Loading branch information
CPKreu committed Dec 6, 2021
1 parent 606344f commit 058a332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PixiEditor/Helpers/VersionHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ private static void AppendDevBuild(StringBuilder builder, ref bool done)
{
done = true;

builder.Append(" Dev");
builder.Append(" Dev Build");
}

[Conditional("DEBUG")]
private static void AppendDebugBuild(StringBuilder builder, ref bool done)
{
done = true;

builder.Append(" Debug");
builder.Append(" Debug Build");
}
}
}

0 comments on commit 058a332

Please sign in to comment.