[lazarus] Bug 4

Vincent Snijders vrs at dds.nl
Sat May 27 05:39:59 EDT 2000


Hi,

The Bug List on the Lazarus site is a nice feature. But where can I sent bug
fixes? I found no information on that on the site, so I send it to the list
and the bug submitter.

I have found a fix for bug 4.

Use instead of
   gtk_label_set_justify(pgtklabel(p),GTK_JUSTIFY_RIGHT);
the call
   gtk_misc_set_alignment(PGTKMISC(p), 0.0, 0.0);
to right jstify the label.
The set_justify is to align text in a multi-lne label.

For Center and Rigth justify use
   gtk_misc_set_alignment(PGTKMISC(p), 0.5, 0.0);
   gtk_misc_set_alignment(PGTKMISC(p), 1.0, 0.0);

Regards,
Vincent







More information about the Lazarus mailing list