mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-02-16 15:22:01 +03:00
feat(ui): Added preferences search
This commit is contained in:
parent
3b8ec10938
commit
9189a6722b
3 changed files with 4 additions and 3 deletions
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Added game edition switcher
|
||||
- Added changelog to updated components toast
|
||||
- Added wine tools to settings
|
||||
- Added preferences search
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -86,6 +86,7 @@ impl SimpleComponent for AboutDialog {
|
|||
"<li>Added game edition switcher</li>",
|
||||
"<li>Added changelog to updated components toast</li>",
|
||||
"<li>Added wine tools to settings</li>",
|
||||
"<li>Added preferences search</li>",
|
||||
"</ul>",
|
||||
|
||||
"<p>Fixed</p>",
|
||||
|
|
|
@ -57,11 +57,10 @@ impl SimpleAsyncComponent for PreferencesApp {
|
|||
preferences_window = adw::PreferencesWindow {
|
||||
set_title: Some(&tr("preferences")),
|
||||
set_default_size: (700, 560),
|
||||
|
||||
set_hide_on_close: true,
|
||||
set_modal: true,
|
||||
|
||||
// FIXME: doesn't work for any reason
|
||||
set_search_enabled: false,
|
||||
set_search_enabled: true,
|
||||
|
||||
add = model.general.widget(),
|
||||
add = model.enhancements.widget(),
|
||||
|
|
Loading…
Add table
Reference in a new issue