Skip to content

Commit

Permalink
Merge pull request #2 from ShioIna/bugfix/overlay_stealing_focus
Browse files Browse the repository at this point in the history
added NoFocusOnAppearing to flags of window base class
  • Loading branch information
Kurochi51 committed May 5, 2024
2 parents fa4928e + 5fb0553 commit 3e4d78b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TickTracker/Windows/BarWindowBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ public abstract class BarWindowBase : Window
protected WindowType WindowType { get; set; }
protected const ImGuiWindowFlags DefaultFlags = ImGuiWindowFlags.NoScrollbar |
ImGuiWindowFlags.NoTitleBar |
ImGuiWindowFlags.NoCollapse;
ImGuiWindowFlags.NoCollapse |
ImGuiWindowFlags.NoFocusOnAppearing;

protected const ImGuiWindowFlags LockedBarFlags = ImGuiWindowFlags.NoBackground |
ImGuiWindowFlags.NoMove |
Expand Down

0 comments on commit 3e4d78b

Please sign in to comment.