mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 18:20:00 +02:00
gtk3: fixed accelerator char on togglebutton. issue #36255
git-svn-id: trunk@62191 -
This commit is contained in:
parent
a68352f396
commit
7d7fd26ec7
@ -6455,8 +6455,12 @@ begin
|
||||
end;
|
||||
|
||||
function TGtk3ToggleButton.CreateWidget(const Params: TCreateParams): PGtkWidget;
|
||||
var
|
||||
btn: PGtkToggleButton;
|
||||
begin
|
||||
Result := PGtkWidget(TGtkToggleButton.new);
|
||||
btn := TGtkToggleButton.new;
|
||||
btn^.use_underline := True;
|
||||
Result := PGtkWidget(btn);
|
||||
end;
|
||||
|
||||
{ TGtk3CheckBox }
|
||||
|
Loading…
Reference in New Issue
Block a user