Compare commits

...

2 Commits

Author SHA1 Message Date
Anna 12e270ece4
chore: bump version to 1.3.1 2024-03-14 15:19:21 -04:00
Anna 1368518e02
fix: don't account for cursor pos twice 2024-03-14 15:19:08 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.3.0</Version>
<Version>1.3.1</Version>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

View File

@ -87,7 +87,7 @@ internal class QuestionsTab {
var currentX = ImGui.GetCursorPosX();
var availX = ImGui.GetContentRegionAvail().X;
var move = availX - width - currentX;
var move = availX - width;
ImGui.SetCursorPosX(currentX + move);
ImGui.TextUnformatted(label);
}