Make the inspect screen background look more sane on some tilesets.

Namely where ' ' is not totally transparent.
develop
Alexander Gavrilov 2012-12-08 14:45:17 +04:00
parent 7307f4e870
commit 10667dfb9e
1 changed files with 1 additions and 1 deletions

@ -30,7 +30,7 @@ function InspectScreen:onRenderFrame(dc, rect)
if gui.blink_visible(100) then
dfhack.screen.paintTile({ch='X',fg=COLOR_LIGHTGREEN}, self.cursor_x, self.cursor_y)
end
dc:fill(rect, {ch=' ',fg=COLOR_BLACK,bg=COLOR_CYAN})
dc:fill(rect, {ch=' ',fg=COLOR_WHITE,bg=COLOR_CYAN})
end
local FG_PEN = {fg=COLOR_WHITE,bg=COLOR_BLACK,tile_color=true}