mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-04-04 15:55:27 +03:00
fix(ui): fixed titlebar behavior on some DEs
https://github.com/an-anime-team/an-anime-game-launcher/issues/80
This commit is contained in:
parent
1eff74489a
commit
7c6a559f81
2 changed files with 14 additions and 7 deletions
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added game repairing function
|
- Added game repairing function
|
||||||
|
- Added french translations (#81)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -18,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Changed default language from en to en-us
|
- Changed default language from en to en-us
|
||||||
|
- Moved integer scaling, fsr and nis into separate group in gamescope settings
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ relm4::new_stateless_action!(DebugFile, WindowActionGroup, "debug_file");
|
||||||
|
|
||||||
relm4::new_stateless_action!(About, WindowActionGroup, "about");
|
relm4::new_stateless_action!(About, WindowActionGroup, "about");
|
||||||
|
|
||||||
static mut MAIN_WINDOW: Option<adw::Window> = None;
|
static mut MAIN_WINDOW: Option<adw::ApplicationWindow> = None;
|
||||||
static mut PREFERENCES_WINDOW: Option<AsyncController<PreferencesApp>> = None;
|
static mut PREFERENCES_WINDOW: Option<AsyncController<PreferencesApp>> = None;
|
||||||
static mut ABOUT_DIALOG: Option<Controller<AboutDialog>> = None;
|
static mut ABOUT_DIALOG: Option<Controller<AboutDialog>> = None;
|
||||||
|
|
||||||
|
@ -116,12 +116,8 @@ impl SimpleComponent for App {
|
||||||
}
|
}
|
||||||
|
|
||||||
view! {
|
view! {
|
||||||
main_window = adw::Window {
|
main_window = adw::ApplicationWindow {
|
||||||
#[watch]
|
set_icon_name: Some(APP_ID),
|
||||||
set_title: match model.style {
|
|
||||||
LauncherStyle::Modern => Some("An Anime Game Launcher"),
|
|
||||||
LauncherStyle::Classic => Some("")
|
|
||||||
},
|
|
||||||
|
|
||||||
#[watch]
|
#[watch]
|
||||||
set_default_size: (
|
set_default_size: (
|
||||||
|
@ -167,6 +163,15 @@ impl SimpleComponent for App {
|
||||||
LauncherStyle::Classic => &["flat"]
|
LauncherStyle::Classic => &["flat"]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
#[wrap(Some)]
|
||||||
|
set_title_widget = &adw::WindowTitle {
|
||||||
|
#[watch]
|
||||||
|
set_title: match model.style {
|
||||||
|
LauncherStyle::Modern => "An Anime Game Launcher",
|
||||||
|
LauncherStyle::Classic => ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
pack_end = >k::MenuButton {
|
pack_end = >k::MenuButton {
|
||||||
set_icon_name: "open-menu-symbolic",
|
set_icon_name: "open-menu-symbolic",
|
||||||
set_menu_model: Some(&main_menu)
|
set_menu_model: Some(&main_menu)
|
||||||
|
|
Loading…
Add table
Reference in a new issue