sComboBoxes

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36894
    Lasse
    Participant

    In sComboBoxes.pas use SColorBoxCustomCaption resourcestring from Vcl.Consts instead of hard coded 'Custom…'.

    Code:
    if cbCustomColor in Style then begin
    Line 1694: Items.Insert(0, SColorBoxCustomCaption);
    // Items.Insert(0, 'Custom…');
    TComboBoxExStrings(Items).ItemsEx[0].Data := TObject(LCustomColor);
    end;

    It gives the possibility to translate it.

    #54872
    Support
    Keymaster

    Thank you for a suggestion, I will change it soon.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.