Enable sixel support in VTE if it's available.
This commit is contained in:
parent
0fea7d47e5
commit
d0e366ff8d
|
@ -155,6 +155,9 @@ class Terminal(Gtk.VBox):
|
||||||
self.composite_support = True
|
self.composite_support = True
|
||||||
dbg('composite_support: %s' % self.composite_support)
|
dbg('composite_support: %s' % self.composite_support)
|
||||||
|
|
||||||
|
if hasattr(self.vte, "set_enable_sixel"):
|
||||||
|
self.vte.set_enable_sixel(True)
|
||||||
|
|
||||||
self.vte.show()
|
self.vte.show()
|
||||||
self.update_url_matches()
|
self.update_url_matches()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue