1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-12 12:00:14 +00:00

Modified the "focus bar" so that it is no longer removed upon losing focus.

This commit is contained in:
Cory Smith 2022-12-30 15:47:24 -06:00
parent a507281f48
commit 4768db3ab6

View file

@ -1503,12 +1503,12 @@ FUNCTION ide2 (ignore)
IF os$ = "WIN" OR MacOSX = 1 THEN
IF _WINDOWHASFOCUS THEN
LOCATE , , 1
_PALETTECOLOR 5, IDEBracketHighlightColor, 0
_PALETTECOLOR 6, IDEBackgroundColor2, 0
'_PALETTECOLOR 5, IDEBracketHighlightColor, 0
'_PALETTECOLOR 6, IDEBackgroundColor2, 0
ELSE
LOCATE , , 0
_PALETTECOLOR 5, IDEBackgroundColor, 0
_PALETTECOLOR 6, IDEBackgroundColor, 0
'_PALETTECOLOR 5, IDEBackgroundColor, 0
'_PALETTECOLOR 6, IDEBackgroundColor, 0
END IF
END IF