Merge branch 'ios-candidate' of https://github.com/Ranchero-Software/NetNewsWire into ios-candidate

This commit is contained in:
Brent Simmons 2020-01-19 14:19:15 -08:00
commit 093c91d792
4 changed files with 13 additions and 12 deletions

View File

@ -180,9 +180,9 @@ class WebViewController: UIViewController {
}
func fullReload() {
if let offset = webView?.scrollView.contentOffset.y {
restoreOffset = Int(offset)
webView?.reload()
webView?.evaluateJavaScript("window.scrollY") { (scrollY, _) in
self.restoreOffset = scrollY as! Int
self.reloadHTML()
}
}
@ -436,7 +436,9 @@ private extension WebViewController {
// play on the iPad where we aren't constantly pushing and popping this controller.
if (renderingTracker > 10) {
reloadHTML()
return
}
renderingTracker += 1
let style = ArticleStylesManager.shared.currentStyle

View File

@ -1167,7 +1167,7 @@ private extension MasterFeedViewController {
feed.rename(to: name) { result in
switch result {
case .success:
self?.reloadNode(node)
break
case .failure(let error):
self?.presentError(error)
}
@ -1176,7 +1176,7 @@ private extension MasterFeedViewController {
folder.rename(to: name) { result in
switch result {
case .success:
self?.reloadNode(node)
break
case .failure(let error):
self?.presentError(error)
}

View File

@ -199,13 +199,11 @@ sub {
width: 100% !important;
}
@media (max-width: 420px) {
blockquote {
margin-inline-start: 0;
margin-inline-end: 0;
padding-left: 15px;
border-left: 3px solid var(--secondary-accent-color);
}
blockquote {
margin-inline-start: 0;
margin-inline-end: 0;
padding-left: 15px;
border-left: 3px solid var(--secondary-accent-color);
}
/* Feed Specific */

View File

@ -51,6 +51,7 @@ private extension InteractiveNavigationController {
navigationAppearance.titleTextAttributes = [.foregroundColor: UIColor.label]
navigationAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.label]
navigationBar.standardAppearance = navigationAppearance
navigationBar.scrollEdgeAppearance = navigationAppearance
navigationBar.tintColor = AppAssets.primaryAccentColor
let toolbarAppearance = UIToolbarAppearance()