| 
					
				 | 
			
			
				@@ -423,18 +423,20 @@ public func getMachineCode() -> String { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ///   - msg: <#msg description#> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 /// - Returns: <#description#> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 public func cShowHUB(superView: UIView?, msg: String?) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    var sty : ToastStyle = ToastManager.shared.style 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    sty.messageAlignment = .center 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     DispatchQueue.main.async { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if superView == nil { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if msg == nil { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 UIApplication.shared.keyWindow?.makeToastActivity(.center) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                UIApplication.shared.keyWindow?.makeToast(msg, duration: 3.0, position: .center) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                UIApplication.shared.keyWindow?.makeToast(msg, duration: 3.0, position: .center, style: sty) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if msg == nil { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 superView!.makeToastActivity(.center) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                superView!.makeToast(msg, duration: 3.0, position: .center) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                superView!.makeToast(msg, duration: 3.0, position: .center,style: sty) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 |