Skip to content

Commit

Permalink
Attempt to enable sixel if it's available in VTE.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Hardin committed Jun 21, 2023
1 parent 5124340 commit d70a0e0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terminatorlib/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ def __init__(self):
self.composite_support = True
dbg('composite_support: %s' % self.composite_support)

if hasattr(self.vte, "set_enable_sixel"):
self.vte.set_enable_sixel(True)

self.vte.show()
self.update_url_matches()

Expand Down

0 comments on commit d70a0e0

Please sign in to comment.