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:
parent
0ebebace82
commit
c796897f36
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user