removed configuration window restrictions
This commit is contained in:
parent
0aa8a8b350
commit
ab3fdd1978
@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<Authors></Authors>
|
||||
<Company></Company>
|
||||
<Version>0.3.0.0</Version>
|
||||
<Version>0.3.1.0</Version>
|
||||
<Description>Currency Alert</Description>
|
||||
<Copyright></Copyright>
|
||||
<PackageProjectUrl>https://github.com/Lharz/xiv-currency-alert</PackageProjectUrl>
|
||||
|
@ -80,9 +80,8 @@ namespace CurrencyAlert
|
||||
|
||||
public void DrawSettingsWindow()
|
||||
{
|
||||
ImGui.SetNextWindowSize(new Vector2(700, 500), ImGuiCond.Always);
|
||||
if (ImGui.Begin("Currency Alert Configuration Window", ref this.settingsVisible,
|
||||
ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoCollapse | ImGuiWindowFlags.NoScrollWithMouse))
|
||||
ImGui.SetNextWindowSize(new Vector2(700, 500), ImGuiCond.FirstUseEver);
|
||||
if (ImGui.Begin("Currency Alert Configuration Window", ref this.settingsVisible))
|
||||
{
|
||||
if (ImGui.BeginTabBar("AlertsConfiguration_Tabs"))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user