From a926b6287695d76f714836cddd61145492ff5439 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Tue, 22 Oct 2024 21:16:54 +0200 Subject: [PATCH] Minor adjustment --- src/ui/Forms/Tts/TextToSpeech.Designer.cs | 14 +++++++------- src/ui/Forms/Tts/TextToSpeech.cs | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ui/Forms/Tts/TextToSpeech.Designer.cs b/src/ui/Forms/Tts/TextToSpeech.Designer.cs index d66a57794..c81d25f04 100644 --- a/src/ui/Forms/Tts/TextToSpeech.Designer.cs +++ b/src/ui/Forms/Tts/TextToSpeech.Designer.cs @@ -167,10 +167,10 @@ // this.linkLabelCustomAudio.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.linkLabelCustomAudio.AutoSize = true; - this.linkLabelCustomAudio.Location = new System.Drawing.Point(169, 400); + this.linkLabelCustomAudio.Location = new System.Drawing.Point(168, 400); this.linkLabelCustomAudio.Name = "linkLabelCustomAudio"; this.linkLabelCustomAudio.Size = new System.Drawing.Size(45, 13); - this.linkLabelCustomAudio.TabIndex = 34; + this.linkLabelCustomAudio.TabIndex = 43; this.linkLabelCustomAudio.TabStop = true; this.linkLabelCustomAudio.Text = "Settings"; this.linkLabelCustomAudio.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelCustomAudio_LinkClicked); @@ -182,7 +182,7 @@ this.checkBoxAudioEncoding.Location = new System.Drawing.Point(32, 401); this.checkBoxAudioEncoding.Name = "checkBoxAudioEncoding"; this.checkBoxAudioEncoding.Size = new System.Drawing.Size(137, 17); - this.checkBoxAudioEncoding.TabIndex = 33; + this.checkBoxAudioEncoding.TabIndex = 42; this.checkBoxAudioEncoding.Text = "Custom audio encoding"; this.checkBoxAudioEncoding.UseVisualStyleBackColor = true; // @@ -215,7 +215,7 @@ this.checkBoxShowPreview.Location = new System.Drawing.Point(17, 352); this.checkBoxShowPreview.Name = "checkBoxShowPreview"; this.checkBoxShowPreview.Size = new System.Drawing.Size(115, 17); - this.checkBoxShowPreview.TabIndex = 25; + this.checkBoxShowPreview.TabIndex = 40; this.checkBoxShowPreview.Text = "Review audio clips"; this.checkBoxShowPreview.UseVisualStyleBackColor = true; // @@ -248,7 +248,7 @@ this.checkBoxAddToVideoFile.Location = new System.Drawing.Point(17, 376); this.checkBoxAddToVideoFile.Name = "checkBoxAddToVideoFile"; this.checkBoxAddToVideoFile.Size = new System.Drawing.Size(176, 17); - this.checkBoxAddToVideoFile.TabIndex = 26; + this.checkBoxAddToVideoFile.TabIndex = 41; this.checkBoxAddToVideoFile.Text = "Add audio to video file (new file)"; this.checkBoxAddToVideoFile.UseVisualStyleBackColor = true; // @@ -362,7 +362,7 @@ 0}); this.nikseUpDownStability.Name = "nikseUpDownStability"; this.nikseUpDownStability.Size = new System.Drawing.Size(75, 23); - this.nikseUpDownStability.TabIndex = 101; + this.nikseUpDownStability.TabIndex = 34; this.nikseUpDownStability.TabStop = false; this.nikseUpDownStability.Text = "nikseUpDownStability"; this.nikseUpDownStability.ThousandsSeparator = false; @@ -400,7 +400,7 @@ 0}); this.nikseUpDownSimilarity.Name = "nikseUpDownSimilarity"; this.nikseUpDownSimilarity.Size = new System.Drawing.Size(75, 23); - this.nikseUpDownSimilarity.TabIndex = 100; + this.nikseUpDownSimilarity.TabIndex = 35; this.nikseUpDownSimilarity.TabStop = false; this.nikseUpDownSimilarity.Text = "nikseUpDownSimilarity"; this.nikseUpDownSimilarity.ThousandsSeparator = false; diff --git a/src/ui/Forms/Tts/TextToSpeech.cs b/src/ui/Forms/Tts/TextToSpeech.cs index f6c282e3a..44e98ea78 100644 --- a/src/ui/Forms/Tts/TextToSpeech.cs +++ b/src/ui/Forms/Tts/TextToSpeech.cs @@ -125,7 +125,7 @@ namespace Nikse.SubtitleEdit.Forms.Tts checkBoxShowPreview.Text = LanguageSettings.Current.TextToSpeech.ReviewAudioClips; checkBoxAudioEncoding.Text = LanguageSettings.Current.TextToSpeech.CustomAudioEncoding; linkLabelCustomAudio.Text = LanguageSettings.Current.Settings.Title; - linkLabelCustomAudio.Left = checkBoxAudioEncoding.Right + 3; + linkLabelCustomAudio.Left = checkBoxAudioEncoding.Right; buttonOK.Text = LanguageSettings.Current.General.Ok; buttonCancel.Text = LanguageSettings.Current.General.Cancel; UiUtil.FixLargeFonts(this, buttonOK);