mirror of https://github.com/stella-emu/stella.git
Changed PC indicator colour on the advice of someone who is partly
colour-blind; the old (light) colour was very hard to see. Actually, I agree with that assessment, even though I'm not colour-blind myself. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2668 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
1173b88c79
commit
895fd7b263
|
@ -37,6 +37,10 @@
|
|||
swapped by default, which allows one and two-player games to work
|
||||
correctly.
|
||||
|
||||
* Changed colour of the 'current PC indicator' in the debugger to
|
||||
match the one used for line selection. This makes it easier to
|
||||
see for those with problems seeing lighter colours.
|
||||
|
||||
-Have fun!
|
||||
|
||||
|
||||
|
|
|
@ -465,7 +465,7 @@ void RomListWidget::drawWidget(bool hilite)
|
|||
|
||||
// Draw highlighted item in a frame
|
||||
if (_highlightedItem == pos)
|
||||
s.frameRect(_x + l.x() - 3, ypos - 1, _w - l.x(), _fontHeight, kDbgColorHi);
|
||||
s.frameRect(_x + l.x() - 3, ypos - 1, _w - l.x(), _fontHeight, kTextColorHi);
|
||||
|
||||
// Draw the selected item inverted, on a highlighted background.
|
||||
if (_selectedItem == pos && _hasFocus)
|
||||
|
|
Loading…
Reference in New Issue