fix debugger instr coloring

Fixes the missing color highlights from the currently executing instruction and the breakpoints.
This commit is contained in:
dio-gh 2021-03-08 22:29:56 +01:00 committed by Megamouse
parent 1a3c01154a
commit aad06faf1f

View File

@ -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 */
}