Skip to content

Commit

Permalink
Tweak debugger window for resizing with different skins
Browse files Browse the repository at this point in the history
  • Loading branch information
PapaJoesSoup committed Apr 29, 2023
1 parent a64e665 commit 6268492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ShipManifest/Windows/WindowDebugger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ internal static void Savelog()

internal static void RefreshUIScale()
{
WindowHeight = 355 * CurrSettings.CurrentUIScale;
WindowHeight = CurrSettings.UseUnityStyle ? 355 : 365 * CurrSettings.CurrentUIScale;
WindowWidth = 520 * CurrSettings.CurrentUIScale;
ViewerWidth = 500 * CurrSettings.CurrentUIScale;
ViewerHeight = 300 * CurrSettings.CurrentUIScale;
Expand Down

0 comments on commit 6268492

Please sign in to comment.