Fix HelixViewer default height being too large
Some checks failed
MSBuild / build (push) Has been cancelled
MSBuild / publish (push) Has been cancelled

This commit is contained in:
ema
2025-09-22 09:59:00 +08:00
parent ad95955666
commit 2570429cdc

View File

@@ -64,7 +64,7 @@ public class Plugin : IViewer
public void Prepare(string path, ContextObject context)
{
context.PreferredSize = new Size { Width = 800, Height = 800 };
context.PreferredSize = new Size { Width = 800, Height = 600 };
}
public void View(string path, ContextObject context)