Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/gui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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.",
Expand Down