if query_sixel_details fails, disable bitmap support #1469

pull/1730/head
nick black 3 years ago committed by Nick Black
parent b432166f66
commit e03b1fb5d8

@ -573,7 +573,9 @@ query_sixel(tinfo* ti, int fd){
}
}
if(ti->bitmap_supported){
query_sixel_details(ti, fd);
if(query_sixel_details(ti, fd)){
ti->bitmap_supported = false;
}
}
return 0;
}

Loading…
Cancel
Save