Skip to content
Snippets Groups Projects
Commit e2c4030a authored by Cedric Seehausen's avatar Cedric Seehausen
Browse files

Issue 2878, Instance name now precedes Appname in ScenarioView

parent 4017e93a
No related branches found
No related tags found
1 merge request!17ScenarioManager fixes
......@@ -76,7 +76,15 @@ void ScenarioItem::update()
}
else
{
m_itemData << application->getName().c_str();
if (application->getInstanceName().empty())
{
m_itemData << application->getName().c_str();
}
else
{
m_itemData << (application->getInstanceName() + "." + application->getName()).c_str();
}
m_itemData << "Start" << "Stop" << "Restart";
if (!application->getFound())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment