From 6c574e4dda4a1379083f4b43d0409bc4ff1cbac4 Mon Sep 17 00:00:00 2001
From: Justin Carpentier <jcarpent@laas.fr>
Date: Fri, 18 May 2018 12:03:21 +0200
Subject: [PATCH] Simplification of names in body list tree (#78)

* [GUI] Simply name of items in the Body tree

* [Git] Update .gitignore

* [GUI] Fix specific case
---
 .gitignore           | 1 +
 src/gui/tree-item.cc | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/.gitignore b/.gitignore
index 8da9b2b..12158c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ _build/*
 Xcode/*
 coverage/*
 build*
+*.pyc
diff --git a/src/gui/tree-item.cc b/src/gui/tree-item.cc
index 75fbf0f..47031ec 100644
--- a/src/gui/tree-item.cc
+++ b/src/gui/tree-item.cc
@@ -36,6 +36,9 @@ namespace gepetto {
       setEditable(false);
       connect (&vmMapper_, SIGNAL (mapped (QString)), SLOT(setViewingMode(QString)));
       connect (&vizMapper_, SIGNAL (mapped (QString)), SLOT(setVisibilityMode(QString)));
+      
+      const std::string & name = node->getID();
+      QStandardItem::setText(name.substr(name.find_last_of("/") + 1).c_str());
     }
 
     QStandardItem* BodyTreeItem::clone() const
-- 
GitLab