mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-01 05:13:43 +01:00
Fix imgui deprecation warnings, some formatting.
This commit is contained in:
parent
c25334ea58
commit
63407f775f
3 changed files with 27 additions and 23 deletions
|
|
@ -53,14 +53,14 @@ namespace Penumbra.UI
|
|||
return;
|
||||
}
|
||||
|
||||
if( ImGui.ListBoxHeader( "##effective_files", AutoFillSize ) )
|
||||
if( ImGui.BeginListBox( "##effective_files", AutoFillSize ) )
|
||||
{
|
||||
foreach( var file in _mods.ResolvedFiles )
|
||||
{
|
||||
DrawFileLine( file.Value, file.Key );
|
||||
}
|
||||
|
||||
ImGui.ListBoxFooter();
|
||||
ImGui.EndListBox();
|
||||
}
|
||||
|
||||
ImGui.EndTabItem();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue