From 9cf62458aa450d9c0bcfddf0893f8fd72f7898cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Tue, 16 Jul 2019 15:34:05 +0200 Subject: 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. --- main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchStatusBar.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') 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); } -- cgit v1.2.3