Move functions list to flyout and auto-close after insert

This commit is contained in:
Codex Assistant 2025-08-27 17:21:05 -05:00
commit c361c2285c
2 changed files with 46 additions and 43 deletions

View file

@ -56,6 +56,8 @@ public partial class MainViewModel : ViewModelBase
if (string.IsNullOrWhiteSpace(functionName))
return;
InsertToken(functionName + "()");
// Close the functions flyout after insertion for smoother UX
IsFunctionsPanelOpen = false;
}
private void InsertToken(string token)