mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-03 02:30:21 -05:00
13 lines
420 B
Python
13 lines
420 B
Python
"""Experimental settings for special stuff."""
|
|
|
|
def set(key, value):
|
|
"""Call to enable special settings:
|
|
|
|
('DXImageTransform.Microsoft', True)
|
|
enable support for parsing special MS only filter values
|
|
|
|
"""
|
|
if key == 'DXImageTransform.Microsoft' and value == True:
|
|
import cssproductions
|
|
cssproductions.PRODUCTIONS.insert(1, cssproductions._DXImageTransform)
|
|
|