mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-12 19:14:38 +01:00
Some minor fixes, changelog updates, do not include SHPKs in swaps by default.
This commit is contained in:
parent
3143530112
commit
c6c2b42d9a
3 changed files with 7 additions and 7 deletions
2
Luna
2
Luna
|
|
@ -1 +1 @@
|
|||
Subproject commit 14544263ad78d95d96235eab597a7cb0a76015eb
|
||||
Subproject commit a03f00b93d5efd04fab90e780c821d83127b2b52
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit d13caf68759521f2b89e74eae79698a5fa346ad5
|
||||
Subproject commit c9e08a8642df46b8aff4abd97f42c0c31318377d
|
||||
|
|
@ -350,11 +350,11 @@ public sealed class DebugTab : Window, ITab<TabType>
|
|||
if (table)
|
||||
{
|
||||
var importing = _modImporter.IsImporting(out var importer);
|
||||
table.DrawDataPair("Is Importing"u8, importing.ToString());
|
||||
table.DrawDataPair("Importer State"u8, (importer?.State ?? ImporterState.None).ToString());
|
||||
table.DrawDataPair("Import Notification Exists"u8, _importPopup.HasNotification.ToString());
|
||||
table.DrawDataPair("Import Window Was Drawn"u8, _importPopup.WasDrawn.ToString());
|
||||
table.DrawDataPair("Import Popup Was Drawn"u8, _importPopup.PopupWasDrawn.ToString());
|
||||
table.DrawDataPair("Is Importing"u8, importing);
|
||||
table.DrawDataPair("Importer State"u8, importer?.State ?? ImporterState.None);
|
||||
table.DrawDataPair("Import Notification Exists"u8, _importPopup.HasNotification);
|
||||
table.DrawDataPair("Import Window Was Drawn"u8, _importPopup.WasDrawn);
|
||||
table.DrawDataPair("Import Popup Was Drawn"u8, _importPopup.PopupWasDrawn);
|
||||
table.DrawColumn("Import Batches"u8);
|
||||
table.NextColumn();
|
||||
foreach (var (index, batch) in _modImporter.ModBatches.Index())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue