1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Disable theme in preferences to work around an android bug

This commit is contained in:
Jesse Vincent 2010-10-10 19:29:15 +00:00
parent c2378c9f46
commit 777c3e28b5

View File

@ -13,7 +13,10 @@ public class K9PreferenceActivity extends PreferenceActivity
public void onCreate(Bundle icicle)
{
K9Activity.setLanguage(this, K9.getK9Language());
setTheme(K9.getK9Theme());
// http://code.google.com/p/k9mail/issues/detail?id=2439
// Re-enable themeing support in preferences when
// http://code.google.com/p/android/issues/detail?id=4611 is resolved
// setTheme(K9.getK9Theme());
super.onCreate(icicle);
}