Skip to content

Commit

Permalink
Fix AllowPinning & AllowClickthrough on Overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
Minmoose committed Feb 17, 2025
1 parent 40ae086 commit 6d4d2d7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Brio/UI/Windows/Specialized/PosingOverlayToolbarWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ public PosingOverlayToolbarWindow(PosingOverlayWindow overlayWindow, EntityManag
_posingService = posingService;
_configurationService = configurationService;

this.AllowClickthrough = false;
this.AllowPinning = false;
this.ForceMainWindow = true;

ShowCloseButton = false;
}

Expand Down Expand Up @@ -389,7 +385,7 @@ private static void DrawHeaderButtons()
const string helpText = "Alt - Hide Overlay\nShift - Disable Gizmo\nCtrl - Disable Skeleton";

ImGui.SetCursorPosY(0);
ImBrio.FontIconButtonRight("overlay_help", FontAwesomeIcon.QuestionCircle, 1f, helpText, bordered: false);
ImBrio.FontIconButtonRight("overlay_help", FontAwesomeIcon.QuestionCircle, 2f, helpText, bordered: false);

ImGui.PopClipRect();
ImGui.SetCursorPos(initialPos);
Expand Down

0 comments on commit 6d4d2d7

Please sign in to comment.