Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
dyrlund committed Mar 15, 2016
1 parent e8757db commit b5280d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public void updateTabName(Tab tab) {
int rawDataFiles = MZmineCore.getCurrentProject().getRawDataFiles()
.size();
if (rawDataFiles > 0)
title += " (n=" + rawDataFiles + ")";
title += " (" + rawDataFiles + ")";
rawDataFilesTab.setText(title);
return;
}
Expand All @@ -371,7 +371,7 @@ public void updateTabName(Tab tab) {
int featureTables = MZmineCore.getCurrentProject()
.getFeatureTables().size();
if (featureTables > 0)
title += " (n=" + featureTables + ")";
title += " (" + featureTables + ")";
featureTablesTab.setText(title);
return;
}
Expand Down

0 comments on commit b5280d7

Please sign in to comment.