mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 23:33:34 +00:00
Changed all C# control flow block statements to include space between keyword and open paren (#800)
This commit is contained in:
@@ -27,7 +27,7 @@ namespace Bit.iOS.Autofill
|
||||
CancelBarButton.Title = AppResources.Cancel;
|
||||
SearchBar.Placeholder = AppResources.Search;
|
||||
SearchBar.BackgroundColor = SearchBar.BarTintColor = ThemeHelpers.ListHeaderBackgroundColor;
|
||||
if(!ThemeHelpers.LightTheme)
|
||||
if (!ThemeHelpers.LightTheme)
|
||||
{
|
||||
SearchBar.KeyboardAppearance = UIKeyboardAppearance.Dark;
|
||||
}
|
||||
@@ -47,7 +47,7 @@ namespace Bit.iOS.Autofill
|
||||
|
||||
partial void CancelBarButton_Activated(UIBarButtonItem sender)
|
||||
{
|
||||
if(FromList)
|
||||
if (FromList)
|
||||
{
|
||||
DismissViewController(true, null);
|
||||
}
|
||||
@@ -64,9 +64,9 @@ namespace Bit.iOS.Autofill
|
||||
|
||||
public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender)
|
||||
{
|
||||
if(segue.DestinationViewController is UINavigationController navController)
|
||||
if (segue.DestinationViewController is UINavigationController navController)
|
||||
{
|
||||
if(navController.TopViewController is LoginAddViewController addLoginController)
|
||||
if (navController.TopViewController is LoginAddViewController addLoginController)
|
||||
{
|
||||
addLoginController.Context = Context;
|
||||
addLoginController.LoginSearchController = this;
|
||||
|
||||
Reference in New Issue
Block a user