[BUG WITH FIX] Settings dialog has some incorrect navigation shorcuts
#1
I don't know if anyone noticed but there are some strange navigation behavior in the "Settings » Customize » Advanced" dialog.

Problems I've found:
1) When the "General" option is selected, press left and "Show Time Panel" is selected. If you press down, "Zoom Animations" is selected but if you press up, "Developer Mode" should be selected but it's not. Instead, it would select the "Menus" option in the left menu.

2)Also when the "General" option is selected, pressing up will select "Fanart" when it should select "Menus". And when the "Menus" option is selected, pressing down should select "General" but nothing happens.

To fix all these issues do the following:

Open the customization.xml file and on line 36/37, replace this:
Code:
<onup>10</onup>
<ondown>10</ondown>
With this:
Code:
<onup>20</onup>
<ondown>20</ondown>
Open the Includes_Settings_LabelsButtons.xml file and on line 778, replace this:
Code:
<onup>9</onup>
With this:
Code:
<onup>10</onup>
And on line 927, replace this:
Code:
<ondown>11</ondown>
With this:
Code:
<ondown>6</ondown>
Reply

Logout Mark Read Team Forum Stats Members Help
[BUG WITH FIX] Settings dialog has some incorrect navigation shorcuts0