Skip to content

Commit 51816db

Browse files
committed
Cleanup
1 parent 2675e64 commit 51816db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BTProgressHUD/ProgressHUD.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,10 +833,10 @@ private void PositionHUD(NSNotification? notification)
833833

834834
UIInterfaceOrientation orientation = UIInterfaceOrientation.Unknown;
835835

836-
if (!System.OperatingSystem.IsIOSVersionAtLeast(9) && !OperatingSystem.IsMacCatalystVersionAtLeast(9))
836+
if (!OperatingSystem.IsIOSVersionAtLeast(9) && !OperatingSystem.IsMacCatalystVersionAtLeast(9))
837837
orientation = UIApplication.SharedApplication.StatusBarOrientation;
838838

839-
bool ignoreOrientation = (System.OperatingSystem.IsIOSVersionAtLeast(8) || OperatingSystem.IsMacCatalystVersionAtLeast(8));
839+
bool ignoreOrientation = OperatingSystem.IsIOSVersionAtLeast(8) || OperatingSystem.IsMacCatalystVersionAtLeast(8);
840840

841841
var keyboardHeight = GetKeyboardHeightFromNotification(notification, ignoreOrientation, orientation, ref animationDuration);
842842

0 commit comments

Comments
 (0)