mirror of https://gitlab.com/basile.b/dexed.git
fix #304 - Terminal, bold text no visible
This commit is contained in:
parent
54c66bc9a7
commit
4a24efc0bb
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue