From b039362c7a5da0918170ff6359ea527c6ea670ae Mon Sep 17 00:00:00 2001
From: Oliver Wiese <oliver.wiese@fu-berlin.de>
Date: Tue, 1 Oct 2019 18:36:38 +0200
Subject: [PATCH] Update Onboarding Video

---
 Pods/QAKit/QAKit/Source/Fingertips.swift | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Pods/QAKit/QAKit/Source/Fingertips.swift b/Pods/QAKit/QAKit/Source/Fingertips.swift
index 5cd3c29..00ed7cd 100644
--- a/Pods/QAKit/QAKit/Source/Fingertips.swift
+++ b/Pods/QAKit/QAKit/Source/Fingertips.swift
@@ -103,7 +103,7 @@ class FingertipsManager {
 			case .cancelled,
 				 .ended			:
 
-				UIView.animate(withDuration: 0.2, animations: { [weak self] in
+				UIView.animate(withDuration: 0.4, animations: { [weak self] in
 					self?.fingertipView(for: touch)?.alpha = 0
 				}, completion: { [weak self] (success: Bool) in
 					self?.fingertipView(for: touch)?.removeFromSuperview()
@@ -155,7 +155,7 @@ private class FingertipView												: UIView {
 		self.layer.cornerRadius = (self.frame.height / 2)
 		self.layer.masksToBounds = true
 		self.layer.borderWidth = 8
-		self.layer.borderColor = UIColor.black.withAlphaComponent(0.2).cgColor
-		self.backgroundColor = UIColor.white.withAlphaComponent(0.2)
+		self.layer.borderColor = UIColor.black.withAlphaComponent(0.7).cgColor
+		self.backgroundColor = UIColor.white.withAlphaComponent(0.7)
 	}
 }
-- 
GitLab