From f7f9022f2f013305c6b68677528a00b9a90f09b5 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Sun, 8 Mar 2026 16:35:42 +0000 Subject: [PATCH] themes: Define style for textview.view Resolves #14617 Previously, we had defined the Default theme for GtkTextView text with "textview" and "textview text". However, the Python console also outputs some text that is formatted by "textview.view". Since we did not define a style here, it was possible for a System theme leak, resulting in unreadable console output (separate from console input). This patch should resolve the issue by adding textview.view to the GtkTextView definitions in common.css. --- themes/Default/common.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/Default/common.css b/themes/Default/common.css index a083bd798e..ec4c2c96c1 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -123,7 +123,7 @@ stack { } /* GtkTextView */ -textview text, textview { +textview, textview.view, textview text { background-color: @extreme-bg-color; color: @fg-color; }