greatly simplify blocked status by removing temporary failure state

This commit is contained in:
2025-11-22 09:27:02 +00:00
parent 28486174f2
commit 660a478fbb
4 changed files with 20 additions and 69 deletions
+5 -2
View File
@@ -164,8 +164,11 @@ impl App {
BlockMethod::SaveServer => ui.label("Rockstar save server access"),
};
ui.add_space(1.0);
ui.create_indicator_dot(self.game_networking.blocked_status);
self.game_networking.reset_indicator_if_failed();
ui.create_indicator_dot(if self.game_networking.blocked {
colours::RED
} else {
colours::GREEN
});
label
});
ui.allocate_ui_with_layout(