Skip to content
Snippets Groups Projects
Commit cf5cb5f3 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Call query_ctda() from supports_sixel() to confirm Sixel support

Both the version and the output mode SyncTERM must be confirmed.

A similar change should be made for supports_palettes() I think.
parent 28e82590
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -284,7 +284,7 @@ function supports_sixel() ...@@ -284,7 +284,7 @@ function supports_sixel()
{ {
if(console.cterm_version == undefined || console.cterm_version < cterm_version_supports_sixel) if(console.cterm_version == undefined || console.cterm_version < cterm_version_supports_sixel)
return false; return false;
return true; return query_ctda(cterm_device_attributes.pixelops_supported);
} }
// Returns: // Returns:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment