mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2024-12-24 15:30:57 +01:00
if Same sorting is enabled, use the directory sorting
This commit is contained in:
parent
5bc11afc69
commit
2ce5c90204
@ -39,11 +39,17 @@ public class Config {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getSorting() {
|
public int getSorting() {
|
||||||
|
if (getIsSameSorting())
|
||||||
|
return getDirectorySorting();
|
||||||
|
|
||||||
return mPrefs.getInt(Constants.SORT_ORDER, Constants.SORT_BY_DATE | Constants.SORT_DESCENDING);
|
return mPrefs.getInt(Constants.SORT_ORDER, Constants.SORT_BY_DATE | Constants.SORT_DESCENDING);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSorting(int order) {
|
public void setSorting(int order) {
|
||||||
mPrefs.edit().putInt(Constants.SORT_ORDER, order).apply();
|
if (getIsSameSorting())
|
||||||
|
setDirectorySorting(order);
|
||||||
|
else
|
||||||
|
mPrefs.edit().putInt(Constants.SORT_ORDER, order).apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getDirectorySorting() {
|
public int getDirectorySorting() {
|
||||||
|
Loading…
Reference in New Issue
Block a user