mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
Make ImU8String not IDisposable
This commit is contained in:
parent
5fee90085c
commit
afe58dae76
15 changed files with 267 additions and 267 deletions
|
|
@ -27,8 +27,8 @@ public static unsafe partial class ImGuiP
|
|||
scaleMin,
|
||||
scaleMax,
|
||||
frameSize);
|
||||
label.Dispose();
|
||||
overlayText.Dispose();
|
||||
label.Recycle();
|
||||
overlayText.Recycle();
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
|
@ -59,8 +59,8 @@ public static unsafe partial class ImGuiP
|
|||
scaleMin,
|
||||
scaleMax,
|
||||
frameSize);
|
||||
label.Dispose();
|
||||
overlayText.Dispose();
|
||||
label.Recycle();
|
||||
overlayText.Recycle();
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
|
@ -91,8 +91,8 @@ public static unsafe partial class ImGuiP
|
|||
scaleMin,
|
||||
scaleMax,
|
||||
frameSize);
|
||||
label.Dispose();
|
||||
overlayText.Dispose();
|
||||
label.Recycle();
|
||||
overlayText.Recycle();
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue