mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
user setting for showing or hiding 'empty' categories and feeds
This commit is contained in:
@@ -7,6 +7,7 @@ public class Settings implements Serializable {
|
||||
|
||||
private String readingMode;
|
||||
private String readingOrder;
|
||||
private boolean showRead;
|
||||
private String customCss;
|
||||
|
||||
public String getReadingMode() {
|
||||
@@ -33,4 +34,12 @@ public class Settings implements Serializable {
|
||||
this.readingOrder = readingOrder;
|
||||
}
|
||||
|
||||
public boolean isShowRead() {
|
||||
return showRead;
|
||||
}
|
||||
|
||||
public void setShowRead(boolean showRead) {
|
||||
this.showRead = showRead;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user