Skip to content

Commit

Permalink
fix: don't force viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
kalilistic committed Oct 21, 2023
1 parent d49463d commit b7418bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dalamud.DrunkenToad/Gui/WindowEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public abstract class WindowEx : Window
/// <param name="flags">window flags.</param>
// ReSharper disable once UnusedParameter.Local
protected WindowEx(string name, IPluginConfig config, ImGuiWindowFlags flags = ImGuiWindowFlags.None)
: base(name, flags, true)
: base(name, flags)
{
this.config = config;
this.defaultFlags = flags;
Expand Down

0 comments on commit b7418bc

Please sign in to comment.