diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 12:07:00 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 12:07:00 -0700 |
| commit | 49b0ad40b51845bbbde68a4133f2b15414cebade (patch) | |
| tree | 937859e3e7792e43641d32b7b2f2d02513608b15 /Malmstone/Windows/MainWindow.cs | |
| parent | 6d32f281e5d826fb7777580420a1eb301ca4baea (diff) | |
window size and UI enhancements
- reduce extra spacing in windows
- make config window resizeable
- move unclaimed reward notification to make main window more compact
- remove addon trigger chat message
Diffstat (limited to 'Malmstone/Windows/MainWindow.cs')
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs index 6ead3a5..3cd53a4 100644 --- a/Malmstone/Windows/MainWindow.cs +++ b/Malmstone/Windows/MainWindow.cs @@ -24,7 +24,7 @@ namespace Malmstone.Windows { SizeConstraints = new WindowSizeConstraints { - MinimumSize = new Vector2(460, 530), + MinimumSize = new Vector2(460, 510), MaximumSize = new Vector2(float.MaxValue, float.MaxValue) }; @@ -110,13 +110,14 @@ namespace Malmstone.Windows ImGui.Separator(); ImGui.Spacing(); + if (ImGui.Button("Settings")) + Plugin.ToggleConfigUI(); + ImGui.SameLine(); if (pvpInfo.CurrentSeriesRank != pvpInfo.ClaimedSeriesRank) { - ImGui.SameLine(); - ImGui.Text("Don't forget to claim your rank rewards!"); + ImGui.Text("Don't forget to claim your Series Malmstone rewards!"); } - if (ImGui.Button("Settings")) - Plugin.ToggleConfigUI(); + } else { |
