diff --git a/I18N Commander/UI WinForms/Components/Translation.cs b/I18N Commander/UI WinForms/Components/Translation.cs index 809f95b..806634b 100644 --- a/I18N Commander/UI WinForms/Components/Translation.cs +++ b/I18N Commander/UI WinForms/Components/Translation.cs @@ -44,9 +44,10 @@ public sealed partial class Translation : UserControl this.isLoading = true; this.currentTranslationId = translation.Id; - this.textBox.Multiline = translation.TextElement.IsMultiLine; this.textBox.Text = translation.Text; - + this.textBox.Multiline = translation.TextElement.IsMultiLine; + this.Height = translation.TextElement.IsMultiLine ? 280 : 106; + this.isLoading = false; }