Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions YACReader/YACReader.pro
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ HEADERS += ../common/comic.h \
goto_dialog.h \
magnifying_glass.h \
main_window_viewer.h \
continuous_page_widget.h \
mouse_handler.h \
viewer.h \
options_dialog.h \
Expand Down Expand Up @@ -98,6 +99,7 @@ SOURCES += ../common/comic.cpp \
goto_dialog.cpp \
magnifying_glass.cpp \
main_window_viewer.cpp \
continuous_page_widget.cpp \
mouse_handler.cpp \
viewer.cpp \
options_dialog.cpp \
Expand Down
2 changes: 2 additions & 0 deletions YACReader/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ class Configuration : public QObject
void setDoublePage(bool b) { settings->setValue(DOUBLE_PAGE, b); }
bool getDoubleMangaPage() { return settings->value(DOUBLE_MANGA_PAGE).toBool(); }
void setDoubleMangaPage(bool b) { settings->setValue(DOUBLE_MANGA_PAGE, b); }
bool getContinuousScroll() { return settings->value(CONTINUOUS_SCROLL, false).toBool(); }
void setContinuousScroll(bool b) { settings->setValue(CONTINUOUS_SCROLL, b); }
bool getEnlargeImages() { return settings->value(ENLARGE_IMAGES, true).toBool(); }
void setEnlargeImages(bool b) { settings->setValue(ENLARGE_IMAGES, b); }

Expand Down
Loading