summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs
index 4a2d3e2b2..d801dd256 100644
--- a/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs
@@ -500,7 +500,7 @@ namespace HandBrakeWPF.ViewModels
return (int)Math.Round(workArea.Width, 0) - 50;
}
- return 100;
+ return width;
}
public int FixHeight(int height)
@@ -511,7 +511,7 @@ namespace HandBrakeWPF.ViewModels
return (int)Math.Round(workArea.Height, 0) - 50;
}
- return 100;
+ return height;
}
#endregion