Add support for specifying that whether or not the image should be flipped in an RTL language.

This commit is contained in:
Karishma Chadha 2019-09-20 15:47:33 -07:00
parent 21430a5366
commit 7129f8c4a9

View file

@ -1250,7 +1250,9 @@ class Runtime extends EventEmitter {
src: argInfo.dataURI, src: argInfo.dataURI,
// TODO these probably shouldn't be hardcoded...? // TODO these probably shouldn't be hardcoded...?
width: 24, width: 24,
height: 24 height: 24,
// TODO is false a good default here?
flip_rtl: argInfo.flipRTL || false
}; };
} }
} else { } else {