mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-24 22:20:00 +01:00
do not show 0 if none image is selected
This commit is contained in:
parent
2c86b0fb1c
commit
f0de223155
@ -214,7 +214,9 @@ public class PhotosActivity extends AppCompatActivity
|
||||
else
|
||||
selectedItemsCnt--;
|
||||
|
||||
mode.setTitle(String.valueOf(selectedItemsCnt));
|
||||
if (selectedItemsCnt > 0)
|
||||
mode.setTitle(String.valueOf(selectedItemsCnt));
|
||||
|
||||
mode.invalidate();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user