Skip to content

Commit

Permalink
more bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lochidev committed Jul 13, 2023
1 parent c2092b0 commit 093b7e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion MauiApp1/Pages/Index.razor
Expand Up @@ -566,7 +566,12 @@
return format;
}
private void EditItem(KeyValuePair<string, Match> item){
currentMatch = item.Value;
currentMatch.Trigger = item.Value.Trigger;
currentMatch.Replace = item.Value.Replace;
if(item.Value.Vars is not null)
{
currentMatch.Vars = item.Value.Vars;
}
}
private void AdjustLazyLoad()
{
Expand Down

0 comments on commit 093b7e0

Please sign in to comment.