Network spoke: Copy UI from gnome-control-center glade file
> + def _add_device_columns(self, treeview):
> + rnd = Gtk.CellRendererPixbuf()
> + rnd.set_property("stock-size", Gtk.IconSize.DND)
> + # TODO Gtk3 icon-name? (also at other places)
> + col = Gtk.TreeViewColumn("Icon", rnd, **{"icon-name":0})
> + treeview.append_column(col)
> +
> + rnd = Gtk.CellRendererText()
> + rnd.set_property("wrap-mode", Pango.WrapMode.WORD)
> + col = Gtk.TreeViewColumn("Text", rnd, markup=2)
> + col.set_sort_column_id(2)
> + col.set_expand(True)
> + treeview.append_column(col)
> +>>>>>>> 7ce7d5d... Copy UI from g-c-c glade file to our local file.
> +
> def apply(self):
> pass
>
Looks like a merge artifact got pulled into the patch here.
- Chris
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|