App no longer auto spinning

I am just about ready to upload my brand new app to the the App store but I now notice that at some point it stopped auto spinning when I turn the iPhone.

The build settings are the standard ones for an app that runs only on landscape modes:

settings =
{
orientation =
{
default =“landscapeRight”,
content = “landscapeRight”,
supported =
{
“landscapeLeft”,“landscapeRight”
},
},

}

I tried updating to the latest build and that is not helping.

Am I missing something obvious? [import]uid: 6310 topic_id: 15286 reply_id: 315286[/import]

Remove the following:

content = “landscapeRight”,

It locks opengl canvas to given orientation… [import]uid: 10478 topic_id: 15286 reply_id: 56428[/import]

Ah. Nevermind!

Just realized that I need to specify both landscapes on the content parameter:

content = {“landscapeRight”, “landscapeLeft”}, [import]uid: 6310 topic_id: 15286 reply_id: 56429[/import]

Ah! Thats even better! Thanks! [import]uid: 6310 topic_id: 15286 reply_id: 56430[/import]