Skip to content

Commit 4a90190

Browse files
committed
fix: Update focused child check to use EnhancedTextBox (#1606)
1 parent 70be81f commit 4a90190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Views/LauncherPage.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ private void OnPopupSureByHotKey(object sender, RoutedEventArgs e)
2020
var children = this.GetLogicalDescendants();
2121
foreach (var child in children)
2222
{
23-
if (child is TextBox { IsFocused: true } textBox)
23+
if (child is EnhancedTextBox { IsFocused: true } textBox)
2424
{
2525
var fake = new KeyEventArgs()
2626
{

0 commit comments

Comments
 (0)