Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
vite
Commits
d663a1ce
Commit
d663a1ce
authored
Apr 04, 2012
by
François Trahay
Browse files
fix the rendering of variables
parent
f9e01086
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/trace/DrawTrace.hpp
View file @
d663a1ce
...
...
@@ -490,9 +490,11 @@ public:
if
(
is_in_set
(
*
c
,
set_container
)){
container
=
*
c
;
position
=
(
int
)
_container_positions
[
container
];
if
((
container
->
get_states
()
!=
NULL
&&
!
container
->
get_states
()
->
empty
())
||
(
container
->
get_events
()
!=
NULL
&&
!
container
->
get_events
()
->
empty
()))
position
=
(
int
)
_container_positions
[
container
]
+
_container_sizes
[
container
];
if
((
container
->
get_states
()
!=
NULL
&&
!
container
->
get_states
()
->
empty
())
||
(
container
->
get_events
()
!=
NULL
&&
!
container
->
get_events
()
->
empty
()))
position
++
;
// Browse variables
variable_map
=
container
->
get_variables
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment