Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Aug 11, 2024
1 parent 688e346 commit 66283d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion JL.Core/Dicts/EPWING/Yomichan/EpwingYomichanUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ internal static class EpwingYomichanUtils
_ = stringBuilder.Append(CultureInfo.InvariantCulture, $"\t{contentResult.Content}");
break;

// "div" or "a" or "tr" or "p" or "h1" or "h2" or "h3" or "h4" or "h5" or "h6"
// "div" or "a" or "tr" or "p" or "summary" or "details" or "dfn" or "img"
default:
_ = stringBuilder.Append(CultureInfo.InvariantCulture, $"\n{contentResult.Content}");
break;
Expand Down
1 change: 1 addition & 0 deletions JL.Windows/GUI/ManageDictionariesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ private async void Window_Closed(object sender, EventArgs e)
WindowsUtils.UpdateMainWindowVisibility();
_ = MainWindow.Instance.Focus();

await DictUtils.SerializeDicts().ConfigureAwait(false);
await DictUtils.LoadDictionaries().ConfigureAwait(false);
await DictUtils.SerializeDicts().ConfigureAwait(false);

Expand Down
1 change: 1 addition & 0 deletions JL.Windows/GUI/ManageFrequenciesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ private async void Window_Closed(object sender, EventArgs e)
WindowsUtils.UpdateMainWindowVisibility();
_ = MainWindow.Instance.Focus();

await FreqUtils.SerializeFreqs().ConfigureAwait(false);
await FreqUtils.LoadFrequencies().ConfigureAwait(false);
await FreqUtils.SerializeFreqs().ConfigureAwait(false);

Expand Down

0 comments on commit 66283d1

Please sign in to comment.