mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 04:57:23 +00:00
fix #6
This commit is contained in:
@@ -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": "關閉面板以應用設置"
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -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;
|
||||||
|
Reference in New Issue
Block a user