Created
December 20, 2018 11:46
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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