Issue 4000, patch from Josip.
svn: r17139
This commit is contained in:
parent
4aa1cf032f
commit
a0dbf6c92b
@ -175,7 +175,8 @@ class PersonBoxWidgetCairo(_PersonWidgetBase):
|
|||||||
self.maxlines = maxlines
|
self.maxlines = maxlines
|
||||||
self.hightlight = False
|
self.hightlight = False
|
||||||
self.connect("expose_event", self.expose)
|
self.connect("expose_event", self.expose)
|
||||||
self.connect("realize", self.realize)
|
if not constfunc.win():
|
||||||
|
self.connect("realize", self.realize)
|
||||||
self.text = ""
|
self.text = ""
|
||||||
if self.person:
|
if self.person:
|
||||||
self.text = self.format_helper.format_person(self.person,
|
self.text = self.format_helper.format_person(self.person,
|
||||||
@ -255,6 +256,19 @@ class PersonBoxWidgetCairo(_PersonWidgetBase):
|
|||||||
witout text.
|
witout text.
|
||||||
"""
|
"""
|
||||||
# pylint: disable-msg=E1101
|
# pylint: disable-msg=E1101
|
||||||
|
if constfunc.win():
|
||||||
|
self.context = self.window.cairo_create()
|
||||||
|
self.textlayout = self.context.create_layout()
|
||||||
|
self.textlayout.set_font_description(self.get_style().font_desc)
|
||||||
|
self.textlayout.set_markup(self.text)
|
||||||
|
size = self.textlayout.get_pixel_size()
|
||||||
|
xmin = size[0] + 12
|
||||||
|
ymin = size[1] + 11
|
||||||
|
if self.img_surf:
|
||||||
|
xmin += self.img_surf.get_width()
|
||||||
|
ymin = max(ymin, self.img_surf.get_height()+4)
|
||||||
|
self.set_size_request(max(xmin, 120), max(ymin, 25))
|
||||||
|
|
||||||
alloc = self.get_allocation()
|
alloc = self.get_allocation()
|
||||||
self.context = self.window.cairo_create()
|
self.context = self.window.cairo_create()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user