fix #304 - Terminal, bold text no visible

This commit is contained in:
Basile Burg 2018-04-25 01:54:52 +02:00
parent 54c66bc9a7
commit 4a24efc0bb
2 changed files with 8 additions and 1 deletions

View File

@ -70,6 +70,9 @@ var
vte_terminal_set_color_foreground: procedure(terminal: PVteTerminal;
const background: PGdkColor); cdecl;
vte_terminal_set_color_bold: procedure(terminal: PVteTerminal;
const background: PGdkColor); cdecl;
vte_terminal_set_color_highlight: procedure(terminal: PVteTerminal;
const background: PGdkColor); cdecl;
@ -119,6 +122,8 @@ begin
'vte_terminal_set_color_background');
@vte_terminal_set_color_foreground := GetProcAddress(Lib,
'vte_terminal_set_color_foreground');
@vte_terminal_set_color_bold := GetProcAddress(Lib,
'vte_terminal_set_color_bold');
@vte_terminal_set_color_highlight := GetProcAddress(Lib,
'vte_terminal_set_color_highlight');
@vte_terminal_set_color_highlight_foreground := GetProcAddress(Lib,

View File

@ -393,10 +393,12 @@ var
begin
fForegroundColor:=value;
{$ifdef hasgtk2term}
if assigned(fTerminalHanlde) and assigned(vte_terminal_set_color_foreground) then
if assigned(fTerminalHanlde) and assigned(vte_terminal_set_color_foreground) and
assigned(vte_terminal_set_color_bold) then
begin
c := TColortoTGDKColor(fForegroundColor);
vte_terminal_set_color_foreground(fTerminalHanlde, @c);
vte_terminal_set_color_bold(fTerminalHanlde, @c);
end;
{$endif}
end;