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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fixed missing synchronization of reading progress when using system back press (gesture or back button). Closes #159.
- Fixed some untranslated strings.
- Fixed misleading url field. Closes #158.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package de.readeckapp.ui.detail
import android.icu.text.MessageFormat
import android.view.View
import android.webkit.WebView
import androidx.activity.compose.BackHandler
import androidx.compose.foundation.clickable
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.foundation.layout.Arrangement
Expand Down Expand Up @@ -123,6 +124,8 @@ fun BookmarkDetailScreen(navHostController: NavController, bookmarkId: String?)
}
}

BackHandler { onClickBack() }

val context = LocalContext.current
LaunchedEffect(key1 = openUrlEvent.value){
openUrlInCustomTab(context, openUrlEvent.value)
Expand Down
Loading