Component TTMSFNCComboBox not work

OS: Debian 10 (buster) LXDE
fpc 3.3.1
lazaraus 2.1

TMS FNC UI Pack v3.2.2.0 | Friday, October 23, 2020 | Version history

Component: TTMSFNCComboBox

  1. after the first letter neither the arrow nor the next letter can knock
  2. if I do esc, (closeUp), and no more letters are typed

unit Unit1;

{$mode objfpc}{$H+}

interface

uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, LCLTMSFNCComboBox;

type

{ TForm1 }

TForm1 = class(TForm)
TMSFNCComboBox1: TTMSFNCComboBox;
procedure FormCreate(Sender: TObject);
private

public

end;

var
Form1: TForm1;

implementation

{$R *.lfm}

{ TForm1 }

procedure TForm1.FormCreate(Sender: TObject);
begin
TMSFNCComboBox1.AutoCompleteNumChar := 3;
TMSFNCComboBox1.AutoDropDown := true;

TMSFNCComboBox1.Items.Clear;
TMSFNCComboBox1.Items.Add('prvi');
TMSFNCComboBox1.Items.Add('peti');
TMSFNCComboBox1.Items.Add('drugi');
TMSFNCComboBox1.Items.Add('petnaesti');
end;

end.

Hi,

Thank you for your report, we are looking into it.