From 914ffe46d2c99a24586d72d7d2a6f0ac2cba033c Mon Sep 17 00:00:00 2001 From: futile Date: Sun, 20 Apr 2025 06:36:53 +0100 Subject: [PATCH] add tooltip to game networking indicator --- src/gui/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/app.rs b/src/gui/app.rs index ecc47ad..05f975f 100644 --- a/src/gui/app.rs +++ b/src/gui/app.rs @@ -160,7 +160,8 @@ impl App { egui::Image::new(egui::include_image!("../../assets/circle.svg")) .max_size([4.0, 4.0].into()) .tint(self.game_networking.blocked_status.to_color32()), - ); + ) + .on_hover_text("This turns yellow if GTA Tools\ncannot find your game."); self.game_networking.if_failed_return_to_unblocked(); }); });