diff --git a/src/gui/mod.rs b/src/gui/mod.rs index c58ee319..d259b09c 100644 --- a/src/gui/mod.rs +++ b/src/gui/mod.rs @@ -1762,7 +1762,9 @@ impl eframe::App for App { } ui.add_enabled_ui(self.state.config.drg_pak_path.is_some(), |ui| { - let mut button = ui.button("Install mods"); + let mut button = ui.button("Apply changes").on_hover_text( + "Install the hook dll to game folder and regenerate mod bundle", + ); if self.state.config.drg_pak_path.is_none() { button = button.on_disabled_hover_text( "DRG install not found. Configure it in the settings menu.", @@ -1800,7 +1802,9 @@ impl eframe::App for App { }); ui.add_enabled_ui(self.state.config.drg_pak_path.is_some(), |ui| { - let mut button = ui.button("Uninstall mods"); + let mut button = ui.button("Uninstall hook and mods").on_hover_text( + "Remove the hook dll and mod bundle from game folder", + ); if self.state.config.drg_pak_path.is_none() { button = button.on_disabled_hover_text( "DRG install not found. Configure it in the settings menu.",