Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2014-12-12 19:26:02 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2014-12-12 19:26:02 +0300
commit22cfeb4f0cbdcad41cfafcbe5930b884660ea645 (patch)
tree7bae27eb4657c81ea254f677b28ce516f7ac2925 /main/src/addins/MonoDevelop.Debugger
parent14dad72ef710e0267a985c5b5ffc53100282f31d (diff)
Bug 13847 - Exception popup is not always visible to user
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs
index 6b65ff6c34..6a5c6741d3 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/ExceptionCaughtDialog.cs
@@ -587,6 +587,7 @@ namespace MonoDevelop.Debugger
if (button == null) {
button = new ExceptionCaughtButton (ex, this, File, Line);
TextEditorService.RegisterExtension (button);
+ button.ScrollToView ();
}
if (miniButton != null) {
miniButton.Dispose ();
@@ -607,6 +608,7 @@ namespace MonoDevelop.Debugger
if (miniButton == null) {
miniButton = new ExceptionCaughtMiniButton (this, File, Line);
TextEditorService.RegisterExtension (miniButton);
+ miniButton.ScrollToView ();
}
}