mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 20:37:42 +01:00
Use new Lock objects
This commit is contained in:
parent
0656bff1f9
commit
6bdc785273
9 changed files with 21 additions and 13 deletions
|
|
@ -137,9 +137,9 @@ internal class TexWidget : IDataWindowWidget
|
|||
conf.QueueSave();
|
||||
}
|
||||
|
||||
var allBlames = this.textureManager.BlameTracker;
|
||||
lock (allBlames)
|
||||
lock (this.textureManager.BlameTracker)
|
||||
{
|
||||
var allBlames = this.textureManager.BlameTracker;
|
||||
ImGui.PushID("blames"u8);
|
||||
var sizeSum = allBlames.Sum(static x => Math.Max(0, x.RawSpecs.EstimatedBytes));
|
||||
if (ImGui.CollapsingHeader(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue