diff --git a/src/activities/reader/ReaderActivity.cpp b/src/activities/reader/ReaderActivity.cpp index b9a01f0..cd5bbf2 100644 --- a/src/activities/reader/ReaderActivity.cpp +++ b/src/activities/reader/ReaderActivity.cpp @@ -46,8 +46,8 @@ void ReaderActivity::onGoToFileSelection() { void ReaderActivity::onGoToEpubReader(std::unique_ptr epub) { exitActivity(); - enterNewActivity(new EpubReaderActivity(renderer, inputManager, std::move(epub), [this] { onGoToFileSelection(); }, - [this] { onGoBack(); })); + enterNewActivity(new EpubReaderActivity( + renderer, inputManager, std::move(epub), [this] { onGoToFileSelection(); }, [this] { onGoBack(); })); } void ReaderActivity::onEnter() { diff --git a/src/main.cpp b/src/main.cpp index f3daeaa..9b950f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -156,8 +156,8 @@ void onGoToSettings() { void onGoHome() { exitActivity(); - enterNewActivity( - new HomeActivity(renderer, inputManager, onContinueReading, onGoToReaderHome, onGoToSettings, onGoToFileTransfer)); + enterNewActivity(new HomeActivity(renderer, inputManager, onContinueReading, onGoToReaderHome, onGoToSettings, + onGoToFileTransfer)); } void setupDisplayAndFonts() {