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:
authorGreg Munn <greg@sgmunn.com>2015-11-20 21:52:33 +0300
committerGreg Munn <greg@sgmunn.com>2015-11-20 21:52:33 +0300
commit0123d7068c2035b9cb934c3f89f370fe44615495 (patch)
tree758b2e5daa9ca88c95eadf34eb8b896166b39eeb /main
parente7dd9388782dfe8b638950dd15446e795f379134 (diff)
parent626577525c197c27e32256314b5ed49b17ee01e9 (diff)
Merge pull request #1117 from mono/cycle6-bug-35105-duplicate-test-results-pad-text
[NUnit] Fix duplicate test result text in Test Results status bar.
Diffstat (limited to 'main')
-rw-r--r--main/src/addins/NUnit/Gui/TestResultsPad.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/main/src/addins/NUnit/Gui/TestResultsPad.cs b/main/src/addins/NUnit/Gui/TestResultsPad.cs
index 7758886781..2bb5bf0bd3 100644
--- a/main/src/addins/NUnit/Gui/TestResultsPad.cs
+++ b/main/src/addins/NUnit/Gui/TestResultsPad.cs
@@ -250,6 +250,8 @@ namespace MonoDevelop.NUnit
progressBar.HeightRequest = infoLabel.SizeRequest ().Height;
runPanel.ShowAll ();
+ progressBar.Hide ();
+ infoSep.Hide ();
resultSummary = new UnitTestResult ();
UpdateCounters ();
}
@@ -289,7 +291,9 @@ namespace MonoDevelop.NUnit
progressBar.Text = "";
testsRun = 0;
resultSummary = new UnitTestResult ();
- resultLabel.Markup = GetResultsMarkup ();
+ resultLabel.Markup = "";
+ resultLabel.Hide ();
+ labels.Show ();
UpdateCounters ();
}