We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb763eb commit 72294d2Copy full SHA for 72294d2
OpenUtau/Views/TypeInDialog.axaml.cs
@@ -10,7 +10,7 @@ public partial class TypeInDialog : Window {
10
public TypeInDialog() {
11
InitializeComponent();
12
OkButton.Click += OkButtonClick;
13
- TextBox.AttachedToVisualTree += (s, e) => TextBox.SelectAll();
+ TextBox.AttachedToVisualTree += (s, e) => { TextBox.SelectAll(); TextBox.Focus(); };
14
}
15
16
public void SetPrompt(string prompt) {
0 commit comments