Kodi Community Forum

Full Version: What does "Mirror Image" do?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On the "Get Fanart" pages, there is a button called "Mirror Image", but it doesn't seem to do anything. I would hope that it would flip the image horizontally, as that would be really useful, but alas it doesn't appear to work. Anyone know any more info about this? I'm running 10.1 on Windows 7.
It does work but it doesn't actually flip the preview image only the resulting fanart.

@ Jezz (if you read this)

Changing the FileBrowser.xml preview image code to that below will show the flipped preview.

PHP Code:
                <control type="image">
                    <
posx>250</posx>
                    <
posy>465</posy>
                    <
width>410</width>
                    <
height>200</height>
                    <
aspectratio>keep</aspectratio>
                    <
texture background="true">$INFO[ListItem.Icon]</texture>
                    <
visible>!SubString(Control.GetLabel(416),*)</visible>
                </
control>
                <
control type="image">
                    <
posx>250</posx>
                    <
posy>465</posy>
                    <
width>410</width>
                    <
height>200</height>
                    <
aspectratio>keep</aspectratio>
                    <
texture background="true" flipx="true">$INFO[ListItem.Icon]</texture>
                    <
visible>SubString(Control.GetLabel(416),*)</visible>
                </
control
Awesome! Thanks for the code - it works perfectly. You need to get that upstream. Big Grin