ui: preparations for user study

* added sample code
* bigger and closed arrow for inheritance edge
* fixed code hover
* lightened scope colors
* fixed interrupted scope ranges to show all lines
* fixed edge creation to correctly show recursion
* prevent aggregation edge number from floating around
* scroll to top when changing codesnippets
This commit is contained in:
Eberhard Graether
2015-01-26 06:50:23 +01:00
parent 4775a87104
commit 016d692dda
7 changed files with 215 additions and 111 deletions
+2 -2
View File
@@ -77,9 +77,9 @@ Node* StorageGraph::createNodeHierarchyWithDistinctSignature(
Edge* StorageGraph::createEdge(Edge::EdgeType type, Node* from, Node* to)
{
Edge* edge = from->findEdgeOfType(type,
[to](Edge* e)
[from, to](Edge* e)
{
return e->getTo() == to;
return e->getFrom() == from && e->getTo() == to;
}
);