ComboBox dropdown Blank and not selectable

Questions about Wine on Linux
Locked
Brad.Wine1
Newbie
Newbie
Posts: 3
Joined: Wed Jul 26, 2017 10:15 pm

ComboBox dropdown Blank and not selectable

Post by Brad.Wine1 »

Delphi 10 program
if I load this style TStyleManager.TrySetStyle('Windows10 Blue');
actually any style

then combo edit drop stop working.

wine --version
wine-2.0.2


program ComboBox;

uses
Vcl.Forms,
ComboBoxM in 'ComboBoxM.pas' {Form1},
Vcl.Themes,
Vcl.Styles;

{$R *.res}

begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('Windows10 Blue');
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: ComboBox dropdown Blank and not selectable

Post by DarkShadow44 »

Just linking this to the bug report here.

Still working on the patches, I'll try to submit them soon.
Locked