From 6a394f8a8648586490f431473cc515d52d7553d8 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Fri, 11 Apr 2025 17:23:01 -0400 Subject: [PATCH] Applications/Internet/Cyberia: Set default colors for root node Until we have a default style sheet implemented, set the default colors to black text on white background for the root node, so that we don't end up with unreadable black bars everywhere. --- Applications/Internet/Cyberia.app/Cyberia.HC | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Applications/Internet/Cyberia.app/Cyberia.HC b/Applications/Internet/Cyberia.app/Cyberia.HC index 0df66bd..40e2309 100644 --- a/Applications/Internet/Cyberia.app/Cyberia.HC +++ b/Applications/Internet/Cyberia.app/Cyberia.HC @@ -212,6 +212,8 @@ U0 @cyberia_navigate() // background1->ctx->fill(Color(255, 255, 255)); status1->SetText("Rendering page..."); + node_list->backgroundColor = Color(255, 255, 255); + node_list->color = Color(0, 0, 0); @render_node_list(node_list, renderer); @window_widgets_list* append = renderer->widgets_base;