fix order

This commit is contained in:
Anna 2022-09-09 05:44:25 -04:00
parent d885307899
commit 98536c4af4
1 changed files with 3 additions and 3 deletions

View File

@ -124,14 +124,14 @@ internal class Settings : ITab {
return;
}
ImGui.Spacing();
ImGui.TextUnformatted("Ban list (click to ban or unban)");
ImGui.SetNextItemWidth(-1);
if (ImGui.InputTextWithHint("##filter", "Search...", ref this._filter, 128)) {
this.FilterTerritories(this._filter);
}
ImGui.Spacing();
ImGui.TextUnformatted("Ban list (click to ban or unban)");
if (ImGui.BeginChild("##ban-list", new Vector2(-1, -1), true)) {
var toAdd = -1L;
var toRemove = -1L;