Skip to content

Instantly share code, notes, and snippets.

@donnib
Created December 20, 2018 11:46
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save donnib/7a6f2f0e18bad7f6e34104ee6ceb372b to your computer and use it in GitHub Desktop.
XXXXX MINGW64 ~/Documents/app_NEW (develop)
$ git status
On branch develop
Your branch is up to date with 'origin/develop'.
nothing to commit, working tree clean
XXXXX MINGW64 ~/Documents/app_NEW (develop)
$ git checkout bugfix/SA-1217-various-bugs-in-xxxx-app
Switched to branch 'bugfix/SA-1217-various-bugs-in-xxxx-app'
Your branch is up to date with 'origin/bugfix/SA-1217-various-bugs-in-xxxx-app'.
XXXXX MINGW64 ~/Documents/app_NEW (bugfix/SA-1217-various-bugs-in-xxxx-app)
$ git status
On branch bugfix/SA-1217-various-bugs-in-xxxx-app
Your branch is up to date with 'origin/bugfix/SA-1217-various-bugs-in-xxxx-app'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: Source/appplication/appplication.iOS/Views/ENVSelectView.cs
no changes added to commit (use "git add" and/or "git commit -a")
XXXXX MINGW64 ~/Documents/app_NEW (bugfix/SA-1217-various-bugs-in-xxxx-app)
$ git diff
diff --git a/Source/appplication/appplication.iOS/Views/ENVSelectView.cs b/Source/appplication/appplication.iOS/Views/ENVSelectView.cs
index a52db61b4..8878dcdd4 100644
--- a/Source/appplication/appplication.iOS/Views/ENVSelectView.cs
+++ b/Source/appplication/appplication.iOS/Views/ENVSelectView.cs
@@ -12,6 +12,7 @@ namespace BK.appplicationApp.iOS.Views
{
base.ViewDidLoad();
NavigationController.NavigationBar.SetTopViewToMatch(Apps.appplicationApp);
+ NavigationController.InteractivePopGestureRecognizer.Enabled = false;
}
}
}
\ No newline at end of file
XXXXX MINGW64 ~/Documents/app_NEW (bugfix/SA-1217-various-bugs-in-xxxx-app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment