Merge pull request #5944 from deathbeam/fix-patches-naming

Remove duplicate "Patches" from time track overview
This commit is contained in:
Tomas Slusny
2018-10-12 00:13:28 +02:00
committed by GitHub

View File

@@ -75,7 +75,7 @@ class OverviewTabPanel extends TabContentPanel
Function.identity(),
t ->
{
OverviewItemPanel p = new OverviewItemPanel(itemManager, pluginPanel, t, t.getName() + " Patches");
OverviewItemPanel p = new OverviewItemPanel(itemManager, pluginPanel, t, t.getName());
add(p);
return p;
}