forked from I2P_Developers/i2p.i2p
susimail: Fixed pagination with zero entries (ticket #1168)
This commit is contained in:
@@ -176,11 +176,14 @@ public class Folder<O extends Object> {
|
||||
*/
|
||||
public void setElements( O[] elements )
|
||||
{
|
||||
this.unsortedElements = elements;
|
||||
if( currentSorter != null )
|
||||
sort();
|
||||
else
|
||||
this.elements = elements;
|
||||
if (elements.length > 0) {
|
||||
this.unsortedElements = elements;
|
||||
if( currentSorter != null )
|
||||
sort();
|
||||
else
|
||||
this.elements = elements;
|
||||
} else
|
||||
this.elements = null;
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
2014-01-09 str4d
|
||||
* susimail: UTF-8 support from wockenfuss (ticket #508)
|
||||
* susimail:
|
||||
- Fixed pagination with zero entries (ticket #1168)
|
||||
- UTF-8 support from wockenfuss (ticket #508)
|
||||
* Console: Fixed overlapping text issue in midnight theme
|
||||
|
||||
2014-01-04 zzz
|
||||
|
||||
Reference in New Issue
Block a user