Skip to content

Commit

Permalink
small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jupahe64 committed Jan 4, 2024
1 parent d7f4181 commit 57a0f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fushigi/ui/widgets/OperationWarningDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static async Task<DialogResult> ShowDialog(IPopupModalHost modalHost,
{
var result = await modalHost.ShowPopUp(
new OperationWarningDialog(warning, categorizedWarnings),
title, ImGuiWindowFlags.AlwaysAutoResize);
title, ImGuiWindowFlags.AlwaysAutoResize | ImGuiWindowFlags.NoBringToFrontOnFocus);

if (result.wasClosed)
return DialogResult.Cancel;
Expand Down

0 comments on commit 57a0f51

Please sign in to comment.