Fixed 'large fonts' issue in 'Tools -> Split subtitle'

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@212 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2010-12-30 20:10:25 +00:00
parent 15ae833648
commit ca9fc8c5bc
2 changed files with 3 additions and 2 deletions

View File

@ -41,7 +41,7 @@
// //
// buttonGetFrameRate // buttonGetFrameRate
// //
this.buttonGetFrameRate.Location = new System.Drawing.Point(137, 97); this.buttonGetFrameRate.Location = new System.Drawing.Point(167, 99);
this.buttonGetFrameRate.Name = "buttonGetFrameRate"; this.buttonGetFrameRate.Name = "buttonGetFrameRate";
this.buttonGetFrameRate.Size = new System.Drawing.Size(24, 22); this.buttonGetFrameRate.Size = new System.Drawing.Size(24, 22);
this.buttonGetFrameRate.TabIndex = 8; this.buttonGetFrameRate.TabIndex = 8;
@ -96,7 +96,7 @@
// labelHoursMinSecsMilliSecs // labelHoursMinSecsMilliSecs
// //
this.labelHoursMinSecsMilliSecs.AutoSize = true; this.labelHoursMinSecsMilliSecs.AutoSize = true;
this.labelHoursMinSecsMilliSecs.Location = new System.Drawing.Point(41, 81); this.labelHoursMinSecsMilliSecs.Location = new System.Drawing.Point(41, 79);
this.labelHoursMinSecsMilliSecs.Name = "labelHoursMinSecsMilliSecs"; this.labelHoursMinSecsMilliSecs.Name = "labelHoursMinSecsMilliSecs";
this.labelHoursMinSecsMilliSecs.Size = new System.Drawing.Size(138, 17); this.labelHoursMinSecsMilliSecs.Size = new System.Drawing.Size(138, 17);
this.labelHoursMinSecsMilliSecs.TabIndex = 22; this.labelHoursMinSecsMilliSecs.TabIndex = 22;

View File

@ -25,6 +25,7 @@ namespace Nikse.SubtitleEdit.Forms
buttonSplit.Text = Configuration.Settings.Language.SplitSubtitle.Split; buttonSplit.Text = Configuration.Settings.Language.SplitSubtitle.Split;
buttonDone.Text = Configuration.Settings.Language.SplitSubtitle.Done; buttonDone.Text = Configuration.Settings.Language.SplitSubtitle.Done;
labelHoursMinSecsMilliSecs.Text = Configuration.Settings.Language.General.HourMinutesSecondsMilliseconds; labelHoursMinSecsMilliSecs.Text = Configuration.Settings.Language.General.HourMinutesSecondsMilliseconds;
buttonGetFrameRate.Left = splitTimeUpDownAdjust.Left + splitTimeUpDownAdjust.Width;
FixLargeFonts(); FixLargeFonts();
} }