only making the buttons active on the first click leads to weird race
conditions.
This commit is contained in:
parent
f4b9edfdca
commit
ae33aab57a
1 changed files with 1 additions and 1 deletions
|
@ -2174,7 +2174,7 @@ public class MessageList
|
|||
if (isChecked)
|
||||
{
|
||||
mSelectedCount++;
|
||||
if (mSelectedCount==1)
|
||||
if (mSelectedCount > 0)
|
||||
{
|
||||
|
||||
enableBatchButtons();
|
||||
|
|
Loading…
Reference in a new issue