+ Switch to dalamud method for opening URLs

+ Fix popout min size
This commit is contained in:
Infi
2024-04-09 16:37:58 +02:00
parent 3f819eee6d
commit 8446cb3c1f
4 changed files with 6 additions and 13 deletions
+2 -6
View File
@@ -16,12 +16,8 @@ internal class Popout : Window
Tab = tab;
Idx = idx;
Size = new Vector2(350, 350);
SizeCondition = ImGuiCond.FirstUseEver;
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new Vector2(350, 350),
MaximumSize = new Vector2(float.MaxValue, float.MaxValue)
};
}
public override void PreDraw()
@@ -64,4 +60,4 @@ internal class Popout : Window
Tab.PopOut = false;
ChatLogWindow.Plugin.SaveConfig();
}
}
}