diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 17:10:41 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 17:31:28 -0700 |
| commit | d5be3a7bc1c4176a9348f81f9677f14ed0b49676 (patch) | |
| tree | 2a0431a7a4d87139061748fbae51f89f9544d24f /Malmstone/Windows/MainWindow.cs | |
| parent | 48122c50492b8c4d8acecee903868b226cc30293 (diff) | |
| parent | 04b359033329d4bcd21b574e601601ffff135ff5 (diff) | |
Merge branch 'postmatch'
Add post match toast and chat messages
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 08550d4..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(440, 510), + 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 { |
