From aad06faf1f0a4282010481ac8df8004c269d00a6 Mon Sep 17 00:00:00 2001 From: dio-gh <10439488+dio-gh@users.noreply.github.com> Date: Mon, 8 Mar 2021 22:29:56 +0100 Subject: [PATCH] fix debugger instr coloring Fixes the missing color highlights from the currently executing instruction and the breakpoints. --- bin/GuiConfigs/Envy.qss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/GuiConfigs/Envy.qss b/bin/GuiConfigs/Envy.qss index 5a82336f73..02dedaf273 100644 --- a/bin/GuiConfigs/Envy.qss +++ b/bin/GuiConfigs/Envy.qss @@ -628,3 +628,12 @@ QLabel#tty_text { color: #f8f8f8; } +/* Debugger colors */ +QLabel#debugger_frame_breakpoint { + color: #000; /* Font Color: Black */ + background-color: #ffff00; /* Yellow */ +} +QLabel#debugger_frame_pc { + color: #000; /* Font Color: Black */ + background-color: #00ff00; /* Green */ +}