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
path: root/main
diff options
context:
space:
mode:
authorMike Krüger <mikkrg@microsoft.com>2019-07-16 16:34:05 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2019-07-16 16:47:16 +0300
commit9cf62458aa450d9c0bcfddf0893f8fd72f7898cd (patch)
tree92e214cfa260fe030fa0eb568e2f6e6c777516a1 /main
parent357ddd538db4d99b365efa0705349b0e6f2f64ac (diff)
Fixes VSTS Bug 941853: Unknown icon shown in status bar when opening a file
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/941853 The BeginProgress API is the cause of that - IconID can beconverted to a string. Other calls of that method are ok.
Diffstat (limited to 'main')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs
index 5344674767..944bb89fea 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs
@@ -66,7 +66,7 @@ namespace MonoDevelop.Ide.Gui
statusBar.AutoPulse = true;
if (inProgress) {
if (progressImage != IconId.Null)
- statusBar.BeginProgress (progressMessage, progressImage);
+ statusBar.BeginProgress (progressImage, progressMessage);
else
statusBar.BeginProgress (progressMessage);
}