Skip to content

Commit

Permalink
Add more padding to the overlay's bone hover tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Minmoose committed Jan 10, 2024
1 parent bd901f0 commit c235429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Brio/UI/Windows/Specialized/PosingOverlayWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private void HandleSkeletonInput(PosingCapability posing, OverlayUIState uiState

if (hovered.Any() && !clicked.Any())
{
ImGui.SetNextWindowPos(ImGui.GetMousePos() + new Vector2(1, 0), ImGuiCond.Always);
ImGui.SetNextWindowPos(ImGui.GetMousePos() + new Vector2(15, 10), ImGuiCond.Always);
if (ImGui.Begin("gizmo_bone_select_preview", ImGuiWindowFlags.AlwaysAutoResize | ImGuiWindowFlags.NoDecoration | ImGuiWindowFlags.NoInputs | ImGuiWindowFlags.NoMove))
{
foreach (var hover in hovered)
Expand Down

0 comments on commit c235429

Please sign in to comment.