mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Use logical extents of the layout instead of ink extents. According to
2006-01-25 Behdad Esfahbod <behdad@gnome.org> * gtk/gtklabel.c (get_layout_location): Use logical extents of the layout instead of ink extents. According to Pango docs, that's what should be used for placement. Moreover, simply use pango_layout_get_pixel_size instead of getting the extents and dividing ourselves.
This commit is contained in:
parent
2ec7ee28b8
commit
2990e0d796
@ -1,3 +1,11 @@
|
||||
2006-01-25 Behdad Esfahbod <behdad@gnome.org>
|
||||
|
||||
* gtk/gtklabel.c (get_layout_location): Use logical extents of the
|
||||
layout instead of ink extents. According to Pango docs, that's what
|
||||
should be used for placement. Moreover, simply use
|
||||
pango_layout_get_pixel_size instead of getting the extents and
|
||||
dividing ourselves.
|
||||
|
||||
2006-01-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): Only
|
||||
|
@ -1,3 +1,11 @@
|
||||
2006-01-25 Behdad Esfahbod <behdad@gnome.org>
|
||||
|
||||
* gtk/gtklabel.c (get_layout_location): Use logical extents of the
|
||||
layout instead of ink extents. According to Pango docs, that's what
|
||||
should be used for placement. Moreover, simply use
|
||||
pango_layout_get_pixel_size instead of getting the extents and
|
||||
dividing ourselves.
|
||||
|
||||
2006-01-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): Only
|
||||
|
@ -2221,18 +2221,12 @@ get_layout_location (GtkLabel *label,
|
||||
if (label->ellipsize || priv->width_chars > 0)
|
||||
{
|
||||
int width;
|
||||
PangoRectangle ink_rect;
|
||||
|
||||
width = pango_layout_get_width (label->layout);
|
||||
if (width == -1)
|
||||
{
|
||||
pango_layout_get_extents (label->layout, &ink_rect, NULL);
|
||||
req_width = PANGO_PIXELS (ink_rect.width);
|
||||
}
|
||||
pango_layout_get_pixel_size (label->layout, &req_width, NULL);
|
||||
else
|
||||
{
|
||||
req_width = PANGO_PIXELS (width);
|
||||
}
|
||||
req_width = PANGO_PIXELS (width);
|
||||
}
|
||||
else
|
||||
req_width = widget->requisition.width;
|
||||
|
Loading…
Reference in New Issue
Block a user