diff options
Diffstat (limited to 'win/C#/Controls/PictureSettings.cs')
-rw-r--r-- | win/C#/Controls/PictureSettings.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win/C#/Controls/PictureSettings.cs b/win/C#/Controls/PictureSettings.cs index eed7ba560..70273cc64 100644 --- a/win/C#/Controls/PictureSettings.cs +++ b/win/C#/Controls/PictureSettings.cs @@ -489,5 +489,13 @@ namespace Handbrake.Controls if (remainder == 0) return value;
return (value + remainder);
}
+
+ // Hidden UI feature to drop the MaxWidth / Height with the MaxWidth/Height label is double clicked
+ private void lbl_max_DoubleClick(object sender, EventArgs e)
+ {
+ PresetMaximumResolution = new Size(0,0);
+ if (PictureSettingsChanged != null)
+ PictureSettingsChanged(this, new EventArgs());
+ }
}
}
\ No newline at end of file |