Fixed a bug that caused K-9 to crash on the Accounts page on 4.x if you were using the dark theme

This commit is contained in:
Jesse Vincent 2013-07-01 16:27:38 -04:00
parent 07d2f4cc53
commit 1b6e9bd4ba
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="4.403" versioncode="17040" >
<change>Fixed a bug that caused K-9 to crash on the Accounts page if you're using the dark theme. Sorry!</change>
</release>
<release version="4.402" versioncode="17039" >
<change>Add additional shortcuts to the Folder list.<change>
<change>Add an "empty trash" option to the Account context menu</change>

View File

@ -5,18 +5,18 @@
<style name="Theme.K9.Dark" parent="Theme.K9.Dark.Base">
<item name="composerBackgroundColor">@android:color/background_dark</item>
<item name="compatDividerVertical">@android:attr/dividerVertical</item>
<item name="compatDividerVertical">?android:attr/dividerVertical</item>
<item name="compatSelectableItemBackground">?android:attr/selectableItemBackground</item>
</style>
<style name="Theme.K9.Light" parent="Theme.K9.Light.Base">
<item name="composerBackgroundColor">@android:color/background_light</item>
<item name="compatDividerVertical">?android:attr/dividerVertical</item>
<item name="compatSelectableItemBackground">?android:attr/selectableItemBackground</item>
</style>
<style name="Theme.K9.Dialog.Dark" parent="Theme.K9.Dark">
<item name="backgroundColorChooseAccountHeader">#404040</item>
<item name="compatDividerVertical">@android:attr/dividerVertical</item>
<item name="compatSelectableItemBackground">?android:attr/selectableItemBackground</item>
</style>
</resources>