Added Keen theme and patched boost a bit to make it work wit CG

This commit is contained in:
Gerhard Stein
2013-09-20 19:42:29 +02:00
parent 4447a982f5
commit 2eb39951d5
22 changed files with 66 additions and 11 deletions

View File

@@ -614,8 +614,8 @@ class Settings
{
if(Globals.TouchscreenKeyboardTheme < 0)
Globals.TouchscreenKeyboardTheme = 0;
if(Globals.TouchscreenKeyboardTheme > 2)
Globals.TouchscreenKeyboardTheme = 2;
if(Globals.TouchscreenKeyboardTheme > 3)
Globals.TouchscreenKeyboardTheme = 3;
if( Globals.TouchscreenKeyboardTheme == 0 )
{
@@ -629,6 +629,10 @@ class Settings
{
nativeSetupScreenKeyboardButtons(loadRaw(p, R.raw.sun));
}
if( Globals.TouchscreenKeyboardTheme == 3 )
{
nativeSetupScreenKeyboardButtons(loadRaw(p, R.raw.keen));
}
}
}