diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs index 70ad9f71e..b08122abd 100644 --- a/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/StaticPreviewViewModel.cs @@ -475,13 +475,13 @@ namespace HandBrakeWPF.ViewModels Rect workArea = SystemParameters.WorkArea;
if (ea.NewSize.Width > workArea.Width)
{
- this.Width = (int)Math.Round(workArea.Width, 0) - 20;
+ this.Width = (int)Math.Round(workArea.Width, 0) - 50;
this.Title = Resources.Preview_Scaled;
}
if (ea.NewSize.Height > workArea.Height)
{
- this.Height = (int)Math.Round(workArea.Height, 0) - 20;
+ this.Height = (int)Math.Round(workArea.Height, 0) - 50;
this.Title = Resources.Preview_Scaled;
}
}
|