Minor UI fix

This commit is contained in:
Nikolaj Olsson 2024-03-31 19:30:42 +02:00
parent 6936105eb3
commit c141068b4a
2 changed files with 3 additions and 1 deletions

View File

@ -122,6 +122,7 @@
this.panelColor.Size = new System.Drawing.Size(20, 20);
this.panelColor.TabIndex = 2;
this.panelColor.TabStop = true;
this.panelColor.Click += new System.EventHandler(this.ButtonChooseColorClick);
//
// labelChooseColor
//
@ -162,6 +163,7 @@
this.richTextBoxPreview.ReadOnly = true;
this.richTextBoxPreview.Size = new System.Drawing.Size(483, 128);
this.richTextBoxPreview.TabIndex = 10;
this.richTextBoxPreview.TabStop = false;
this.richTextBoxPreview.Text = "";
//
// radioButtonByWordEffect

View File

@ -1,10 +1,10 @@
using Nikse.SubtitleEdit.Core.Common;
using Nikse.SubtitleEdit.Core.Common.TextEffect;
using Nikse.SubtitleEdit.Logic;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using Nikse.SubtitleEdit.Core.Common.TextEffect;
namespace Nikse.SubtitleEdit.Forms
{