mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-02 05:43:42 +01:00
Fix some bugs, add clipboard options to meta changes.
This commit is contained in:
parent
0c3c7ea363
commit
9bceed3d57
7 changed files with 106 additions and 45 deletions
|
|
@ -430,6 +430,12 @@ public partial class ModEditWindow : Window, IDisposable
|
|||
return;
|
||||
}
|
||||
|
||||
if( ImGui.Button( "Refresh" ) )
|
||||
{
|
||||
_editor!.Dispose();
|
||||
_editor = new Mod.Editor( _mod! );
|
||||
}
|
||||
|
||||
if( _editor!.UnusedFiles.Count == 0 )
|
||||
{
|
||||
ImGui.NewLine();
|
||||
|
|
@ -437,6 +443,7 @@ public partial class ModEditWindow : Window, IDisposable
|
|||
}
|
||||
else
|
||||
{
|
||||
ImGui.SameLine();
|
||||
if( ImGui.Button( "Add Unused Files to Default" ) )
|
||||
{
|
||||
_editor.AddUnusedPathsToDefault();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue