We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae718a3 commit e7136c1Copy full SHA for e7136c1
src/Files.App/Data/Items/WindowEx.cs
@@ -32,7 +32,6 @@ private LRESULT NewWindowProc(HWND param0, uint param1, WPARAM param2, LPARAM pa
32
var dpi = PInvoke.GetDpiForWindow(new(param0));
33
float scalingFactor = (float)dpi / 96;
34
35
- // ここで、最上の大きさをMINMAXINFOに入れて指定する
36
MINMAXINFO minMaxInfo = Marshal.PtrToStructure<MINMAXINFO>(param3);
37
minMaxInfo.minTrackSize.cx = (int)(MinWidth * scalingFactor);
38
minMaxInfo.minTrackSize.cy = (int)(MinHeight * scalingFactor);
0 commit comments