mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fixed QueryTextBox Binding Error.
This commit is contained in:
parent
ee44b4c2d4
commit
54df39c01c
1 changed files with 4 additions and 1 deletions
|
|
@ -561,7 +561,10 @@ namespace Flow.Launcher
|
|||
private void QueryTextBox_KeyUp(object sender, KeyEventArgs e)
|
||||
{
|
||||
if(_viewModel.QueryText != QueryTextBox.Text)
|
||||
_viewModel.QueryText = QueryTextBox.Text;
|
||||
{
|
||||
BindingExpression be = QueryTextBox.GetBindingExpression(System.Windows.Controls.TextBox.TextProperty);
|
||||
be.UpdateSource();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue