This commit is contained in:
2024-12-14 18:08:54 +08:00
parent 95815131fe
commit 82b8eac989
2 changed files with 23 additions and 2 deletions

View File

@@ -183,7 +183,8 @@
"Related Artworks": "相关作品", "Related Artworks": "相关作品",
"Emphasize artworks from following artists": "强调关注画师的作品", "Emphasize artworks from following artists": "强调关注画师的作品",
"The border of the artworks will be darker": "作品的边框将被加深", "The border of the artworks will be darker": "作品的边框将被加深",
"Initial Page": "初始页面" "Initial Page": "初始页面",
"Close the pane to apply the settings": "关闭面板以应用设置"
}, },
"zh_TW": { "zh_TW": {
"Search": "搜索", "Search": "搜索",
@@ -369,6 +370,7 @@
"Related Artworks": "相關作品", "Related Artworks": "相關作品",
"Emphasize artworks from following artists": "強調關注畫師的作品", "Emphasize artworks from following artists": "強調關注畫師的作品",
"The border of the artworks will be darker": "作品的邊框將被加深", "The border of the artworks will be darker": "作品的邊框將被加深",
"Initial Page": "初始頁面" "Initial Page": "初始頁面",
"Close the pane to apply the settings": "關閉面板以應用設置"
} }
} }

View File

@@ -420,6 +420,19 @@ class _SearchSettingsState extends State<SearchSettings> {
})) }))
.toList(), .toList(),
)), )),
const SizedBox(height: 4),
Center(
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(FluentIcons.info, size: 16),
const SizedBox(
width: 4,
),
Text("Close the pane to apply the settings".tl)
],
),
),
SizedBox( SizedBox(
height: context.padding.bottom, height: context.padding.bottom,
) )
@@ -457,6 +470,12 @@ class _SearchResultPageState
late final controller = TextEditingController(text: widget.keyword); late final controller = TextEditingController(text: widget.keyword);
@override
void reset() {
nextUrl = null;
super.reset();
}
void search() { void search() {
if (keyword != oldKeyword) { if (keyword != oldKeyword) {
oldKeyword = keyword; oldKeyword = keyword;