Remove duplicate "Patches" from time track overview

Closes #5943

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-10-11 21:27:44 +02:00
parent caa0b65894
commit da35086a13

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;
}