Comment 11 for bug 546392

Revision history for this message
Inash Zubair (inash) wrote : Re: gwibber crashes on startup with system default-font-size set to non-integer (eg. 10.5pt)

This is definitely a duplicate of #425929. I was hit with the same problem as sbas as I keep my application font size same as sbas's. I've proposed a possible fix for it and have proposed for merging. It's just a one liner. If you open the file /usr/lib/python2.6/dist-packages/gwibber/gwui.py and search for:

self.web_settings.set_property("default-font-size", int(font_size))

which comes under WebUi.render method and change it to:

self.web_settings.set_property("default-font-size", int(float(font_size)))

will fix the problem for you.