From f3b7bcd44c09ee7c7e6d1e5beeaaed23ce953319 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 11 Mar 2020 21:07:50 +0100 Subject: [PATCH] terminal, remove deficient option used to set selection was not working before 3b358c9a48f56503d35966b2a9b37f4680a21fde anyway due to an unassigned binding that did existed in vte 0.2.z --- etc/terminal/terminalctrls.pas | 4 ++-- src/u_term.pas | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/terminal/terminalctrls.pas b/etc/terminal/terminalctrls.pas index 52124a88..22a7208d 100644 --- a/etc/terminal/terminalctrls.pas +++ b/etc/terminal/terminalctrls.pas @@ -614,8 +614,8 @@ begin {$ifdef hasgtk2term} if assigned(fTerminalHanlde) then begin - c := TColortoTGDKColor(fSelectedColor); - vte_terminal_set_color_highlight(fTerminalHanlde, @c); + //c := TColortoTGDKColor(InvertColor(fSelectedColor)); + //vte_terminal_set_color_highlight(fTerminalHanlde, @c); end; {$endif} end; diff --git a/src/u_term.pas b/src/u_term.pas index 87cadc6b..78331e1c 100644 --- a/src/u_term.pas +++ b/src/u_term.pas @@ -45,7 +45,7 @@ type published property backgroundColor: TColor read fBackgroundColor write fBackgroundColor; property foregroundColor: TColor read fForegroundColor write fForegroundColor; - property selectedColor: TColor read fSelectedColor write fSelectedColor; + property selectedColor: TColor (*read fSelectedColor*) write fSelectedColor stored false; property font: TFont read fFont write setFont; property followEditors: boolean read fFollowEditors write fFollowEditors; property followProjects: boolean read fFollowProjects write fFollowProjects; @@ -201,7 +201,7 @@ begin w := TTermWidget(owner); w.fTerm.backgroundColor:= backgroundColor; w.fTerm.foregroundColor:= foregroundColor; - w.fTerm.selectedColor:= selectedColor; + //w.fTerm.selectedColor:= selectedColor; w.fTerm.Font.BeginUpdate; w.fTerm.Font.Assign(fFont); // force the change: assigning does always trigger TTerminal.FontChanged.