mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-23 00:49:18 +01:00
Add new Mod Collections tab.
This commit is contained in:
parent
835020229c
commit
e9fc57022e
5 changed files with 126 additions and 10 deletions
|
|
@ -9,8 +9,7 @@ using Penumbra.Api.Enums;
|
|||
using Penumbra.Mods;
|
||||
using Penumbra.UI.Classes;
|
||||
using Penumbra.UI.Tabs;
|
||||
using Penumbra.Util;
|
||||
|
||||
using Penumbra.Util;
|
||||
namespace Penumbra.UI;
|
||||
|
||||
public sealed class ConfigWindow : Window
|
||||
|
|
@ -45,7 +44,7 @@ public sealed class ConfigWindow : Window
|
|||
RespectCloseHotkey = true;
|
||||
SizeConstraints = new WindowSizeConstraints()
|
||||
{
|
||||
MinimumSize = new Vector2(800, 600),
|
||||
MinimumSize = new Vector2(900, 600),
|
||||
MaximumSize = new Vector2(4096, 2160),
|
||||
};
|
||||
tutorial.UpdateTutorialStep();
|
||||
|
|
@ -112,9 +111,12 @@ public sealed class ConfigWindow : Window
|
|||
var text = e.ToString();
|
||||
if (text == _lastException)
|
||||
return;
|
||||
|
||||
_lastException = text;
|
||||
}
|
||||
else
|
||||
{
|
||||
_lastException = e.ToString();
|
||||
}
|
||||
|
||||
Penumbra.Log.Error($"Exception thrown during UI Render:\n{_lastException}");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue