Gtk3: ellipsize text of combo.style=dropdownlist

This commit is contained in:
zeljan1 2025-01-30 10:12:54 +01:00
parent 71cedcf83b
commit 49faf7719e

View File

@ -326,6 +326,8 @@ begin
if Assigned(ACombo) then
begin
if TCustomComboBox(aWidget.LCLObject).Style = csDropDownList then
g_object_set(PGObject(cell), 'ellipsize', [PANGO_ELLIPSIZE_END, nil]);
{$IFDEF GTK3DEBUGCELLRENDERER}
writeln('Widget is ',G_OBJECT_TYPE_NAME(widget),' ',G_OBJECT_TYPE_NAME(ACombo),' LCL=',dbgsName(aWidget.LCLObject));
InspectStyleContext(aCombo);