Kodi Community Forum

Full Version: How can I fix these "right slick menus"?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to know how to fix this problem. The "ALT" screen comes up in different locations. I want it always centered.

Examples.

Image

Image
I think this is happening in all versions, but this exact screenshots was taken in 31009.
Can anyone tell me how to fix this?
Use the code below before the main controls -

PHP Code:
<coordinates>
    <
system>1</system>
    <
posx>0</posx>
    <
posy>0</posy>
    <
origin x="0" y="0" />
</
coordinates
Then <align>centre</align> in the controls.

Note: You can only centre along the x axis.
Hitcher Wrote:Use the code below before the main controls -

PHP Code:
<coordinates>
    <
system>1</system>
    <
posx>0</posx>
    <
posy>0</posy>
    <
origin x="0" y="0" />
</
coordinates
Then <align>centre</align> in the controls.

Note: You can only centre along the x axis.

So put <align>centre</align> in each control in the xml file?
The context menus always show where the list is placed, so to center the context menus you need to add the coordinates and the origin part to center them in all views regardless of the list positions.

I use this for context menus to the center them on screen

PHP Code:
        <coordinates>
            <
system>1</system>
            <
posx>0</posx>
            <
posy>0</posy>
            <
origin x="490" y="160" />
        </
coordinates
Thanks guys, got it!