1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-11 13:49:15 -05:00

Fix focus of flag/read toggles in bulk-update mode

This commit is contained in:
Jesse Vincent 2009-11-30 23:23:27 +00:00
parent 0ebebace82
commit c796897f36

View File

@ -550,14 +550,29 @@ public class MessageList
case KeyEvent.KEYCODE_DPAD_LEFT:
{
if (mBatchButtonArea.hasFocus())
{
return false;
}
else
{
cycleVisibleWidgets(true);
return true;
}
}
case KeyEvent.KEYCODE_DPAD_RIGHT:
{
if (mBatchButtonArea.hasFocus())
{
return false;
}
else
{
cycleVisibleWidgets(false);
return true;
}
}
case KeyEvent.KEYCODE_C: