• R/O
  • HTTP
  • SSH
  • HTTPS

handbrake-jp: Commit

handbrake-jp project\'s main repository.


Commit MetaInfo

Revision2e78e83f3b201fd4de42dd1e9d322fdf1ac82af1 (tree)
Time2011-01-04 23:15:11
Authorunknown <hirom@.(no...>
Commiterhylom

Log Message

fix: invalid real size shown when anamorphic param chenged

Change Summary

Incremental Difference

--- a/win/C#/Controls/PictureSettings.cs
+++ b/win/C#/Controls/PictureSettings.cs
@@ -201,9 +201,12 @@ namespace Handbrake.Controls
201201
202202 if (check_KeepAR.CheckState == CheckState.Checked && Source != null)
203203 {
204+ _preventChangingWidth = true;
204205 updownParWidth.Value = updownDisplayWidth.Value;
205206 updownParHeight.Value = text_width.Value;
207+ _preventChangingWidth = false;
206208 }
209+ labelDisplaySize.Text = CalculateAnamorphicSizes().Width + "x" + CalculateAnamorphicSizes().Height;
207210 break;
208211 default:
209212 labelDisplaySize.Text = CalculateAnamorphicSizes().Width + "x" + CalculateAnamorphicSizes().Height;
Show on old repository browser