add tooltip to game networking indicator

This commit is contained in:
2025-04-20 06:55:43 +01:00
parent 935703e1ab
commit 914ffe46d2
+2 -1
View File
@@ -160,7 +160,8 @@ impl App {
egui::Image::new(egui::include_image!("../../assets/circle.svg")) egui::Image::new(egui::include_image!("../../assets/circle.svg"))
.max_size([4.0, 4.0].into()) .max_size([4.0, 4.0].into())
.tint(self.game_networking.blocked_status.to_color32()), .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(); self.game_networking.if_failed_return_to_unblocked();
}); });
}); });