mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
wip: mark items as the user scrolls past them (#62)
This commit is contained in:
@@ -43,8 +43,9 @@ public class UserSettings extends AbstractModel {
|
||||
private ViewMode viewMode;
|
||||
|
||||
private boolean showRead;
|
||||
|
||||
private boolean scrollMarks;
|
||||
private boolean socialButtons;
|
||||
private boolean test;
|
||||
|
||||
@Lob
|
||||
@Column(length = Integer.MAX_VALUE)
|
||||
@@ -106,4 +107,20 @@ public class UserSettings extends AbstractModel {
|
||||
this.viewMode = viewMode;
|
||||
}
|
||||
|
||||
public boolean isScrollMarks() {
|
||||
return scrollMarks;
|
||||
}
|
||||
|
||||
public void setScrollMarks(boolean scrollMarks) {
|
||||
this.scrollMarks = scrollMarks;
|
||||
}
|
||||
|
||||
public boolean isTest() {
|
||||
return test;
|
||||
}
|
||||
|
||||
public void setTest(boolean test) {
|
||||
this.test = test;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user