mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
add ability to add new line in textarea
This commit is contained in:
parent
5daf906832
commit
c35ddbc2d9
1 changed files with 2 additions and 1 deletions
|
|
@ -400,9 +400,10 @@ namespace Flow.Launcher.Core.Plugin
|
||||||
var textBox = new TextBox()
|
var textBox = new TextBox()
|
||||||
{
|
{
|
||||||
Width = 300,
|
Width = 300,
|
||||||
Height = 100,
|
Height = 120,
|
||||||
Margin = settingControlMargin,
|
Margin = settingControlMargin,
|
||||||
TextWrapping = TextWrapping.WrapWithOverflow,
|
TextWrapping = TextWrapping.WrapWithOverflow,
|
||||||
|
AcceptsReturn = true,
|
||||||
Text = Settings[attribute.Name] as string ?? string.Empty
|
Text = Settings[attribute.Name] as string ?? string.Empty
|
||||||
};
|
};
|
||||||
textBox.TextChanged += (sender, _) =>
|
textBox.TextChanged += (sender, _) =>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue