Comment 3 for bug 1245094

Revision history for this message
Bob Wanamaker (rlw-nycap) wrote :

A patch I found as a commit at github.com made /usr/lib/cinnamon-settings/cinnamon-settings.py display settings options again for me in Ubuntu, 12.04 32 bit. I'm running cinnamon 2.0.6-20131026040307. This line added may work with 12.04, 64bit too. See URL https://github.com/linuxmint/Cinnamon/commit/c4eac2e3ab88a2264faedf09f026432522bbe18e

318 318 widget = Gtk.Label()
319 319 widget.set_use_markup(True)
320 320 widget.set_markup('<span size="12000">%s</span>' % category["label"])
321 321 widget.set_alignment(.5, .5)
322 322 box.pack_start(widget, False, False, 1)
323 323 self.side_view_container.pack_start(box, False, False, 0)
324 324 widget = Gtk.IconView.new_with_model(self.storeFilter[category["id"]])
325 325 area = widget.get_area()
           326 + widget.set_item_width(105)
326 327 pixbuf_renderer = Gtk.CellRendererPixbuf()
327 328 text_renderer = Gtk.CellRendererText(ellipsize=Pango.EllipsizeMode.NONE,