fix: show hero mode hover text in advanced mode

This commit is contained in:
Cyrix126 2024-11-01 01:01:31 +01:00
parent a58c7e219a
commit b056e45c35

View file

@ -156,7 +156,7 @@ impl crate::disk::state::Xvb {
ui.selectable_value(&mut self.mode, XvbMode::Auto,
XvbMode::Auto.to_string());
ui.selectable_value(&mut self.mode, XvbMode::Hero,
XvbMode::Hero.to_string());
XvbMode::Hero.to_string()).on_hover_text(XVB_HERO_SELECT);
ui.selectable_value(&mut self.mode, XvbMode::ManualXvb,
XvbMode::ManualXvb.to_string())
.on_hover_text(XVB_MODE_MANUAL_XVB_HELP);