diff --git a/JL.Core/Dicts/EPWING/Yomichan/EpwingYomichanUtils.cs b/JL.Core/Dicts/EPWING/Yomichan/EpwingYomichanUtils.cs index 401bf7c3..5c2ed967 100644 --- a/JL.Core/Dicts/EPWING/Yomichan/EpwingYomichanUtils.cs +++ b/JL.Core/Dicts/EPWING/Yomichan/EpwingYomichanUtils.cs @@ -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; diff --git a/JL.Windows/GUI/ManageDictionariesWindow.xaml.cs b/JL.Windows/GUI/ManageDictionariesWindow.xaml.cs index dbfc9c4a..b3040218 100644 --- a/JL.Windows/GUI/ManageDictionariesWindow.xaml.cs +++ b/JL.Windows/GUI/ManageDictionariesWindow.xaml.cs @@ -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); diff --git a/JL.Windows/GUI/ManageFrequenciesWindow.xaml.cs b/JL.Windows/GUI/ManageFrequenciesWindow.xaml.cs index 230fb60b..ecd2dfde 100644 --- a/JL.Windows/GUI/ManageFrequenciesWindow.xaml.cs +++ b/JL.Windows/GUI/ManageFrequenciesWindow.xaml.cs @@ -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);