Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
For #3551: Tapping a bookmark/history from Library should open new tab (
Browse files Browse the repository at this point in the history
  • Loading branch information
colintheshots authored Jul 1, 2019
1 parent 7b86dac commit 50052c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class BookmarkFragment : Fragment(), BackHandler, AccountObserver {
(activity as HomeActivity)
.openToBrowserAndLoad(
searchTermOrURL = url,
newTab = false,
newTab = true,
from = BrowserDirection.FromBookmarks
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class HistoryFragment : Fragment(), BackHandler {
private fun openItem(item: HistoryItem) {
(activity as HomeActivity).openToBrowserAndLoad(
searchTermOrURL = item.url,
newTab = false,
newTab = true,
from = BrowserDirection.FromHistory
)
}
Expand Down

0 comments on commit 50052c9

Please sign in to comment.