View Single Post
Moderator | Posts: 6,215 | Thanked: 6,400 times | Joined on Nov 2011
#51
Code:
sed -i 's/locked-or*.*/locked-orientation: "";/' /usr/share/themes/blanco/meegotouch/sysuid/style/sysuid.css
sed -i 's/locked-or*.*/locked-orientation: "portrait";/' /usr/share/themes/base/meegotouch/meegotouchhome/style/meegotouchhome.css
Do the modification manually and try...


Edit: in the first file [/usr/share/themes/blanco/meegotouch/sysuid/style/sysuid.css] you have to change:
Code:
ScreenLockWindowStyle {
    locked-orientation: "portrait";
    translucent: true;
}
to:

Code:
ScreenLockWindowStyle {
    locked-orientation: "";
    translucent: true;
}

The second file [/usr/share/themes/base/meegotouch/meegotouchhome/style/meegotouchhome.css] change:
Code:
MainWindowStyle {
    locked-orientation: "portrait";
}
to:

Code:
MainWindowStyle {
    locked-orientation: "";
}

Last edited by thedead1440; 2012-10-07 at 15:22.