TAdvSmoothListBox

Hello All

I have a AdvSmoothListBox set up with Layout:=lblBubble for a chat program.

For messages on the right side I Add an Item with:

NotesLocation:=plTopRight;
Alternate:=lbaRight;
(MyMessage.MMessage is the text of a chat)
Notes:='<FONT color="#0010FF"  size="20" face="Source Sans Pro Semibold">'+MyMessage.MMessage+'</FONT>';
GraphicRightType := gtNone;

Problem is that the right justified text is cut off on the right margin. Is there a setting that I am missing or is this a bug? Please see attached pic.



Hi, 


There is no picture visible. Can you send us some sample that is able to reproduce this issue?

Here are two AdvSmoothListBoxes. On the left, I add captions to each item with right justification.

   with MyListBox.Items.Add do
   begin
      AutoSize:=False;
      Caption:=MyUser;
      CaptionFont.Name:='Source Sans Pro Semibold';
      CaptionFont.Size:=12;
      GraphicLeftType:=gtCheckBox;
      GraphicRightType:=gtImage;
      GraphicRightIndex:=0;
      CaptionAlignment:=taRightJustify;
   end;
   MyListBox.Items.Sort;

On the right list box, I add items for each conversation.


There doesn't seem to be a way to add an image unless it lives on the web somewhere...

So the question marks are outside of the items on the right

Hi, 


We have investigated this here but are not able to reproduce this issue.
Can you send us a small sample? The font-size and font-name of the items as well as the caption margins is also important to verify if the calculation is correct.