mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add Clear button to NetworkMonitorWidget
This commit is contained in:
parent
7a0f58a106
commit
dde1dd2f55
1 changed files with 5 additions and 0 deletions
|
|
@ -98,6 +98,11 @@ internal class NetworkMonitorWidget : IDataWindowWidget
|
|||
this.trackedPackets = Math.Clamp(this.trackedPackets, 1, 512);
|
||||
}
|
||||
|
||||
if (ImGui.Button("Clear Stored Packets"))
|
||||
{
|
||||
this.packets.Clear();
|
||||
}
|
||||
|
||||
this.DrawFilterInput();
|
||||
this.DrawNegativeFilterInput();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue