Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sarah.grebing
ProofScriptParser
Commits
a20c0eba
Commit
a20c0eba
authored
Jan 16, 2018
by
Sarah Grebing
Browse files
First fix for stepping into macros
parent
96e41055
Pipeline
#16873
passed with stages
in 10 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controls/ProofTree.java
View file @
a20c0eba
...
...
@@ -162,12 +162,13 @@ public class ProofTree extends BorderPane {
public
void
expandRootToLeaves
()
{
if
(
getTreeProof
().
getRoot
()
==
null
)
{
if
(
root
.
get
()
!=
null
)
{
TreeItem
<
TreeNode
>
item
=
new
TreeItem
<>(
new
TreeNode
(
root
.
get
().
serialNr
()
+
": "
+
toString
(
root
.
get
()),
root
.
get
()));
TreeItem
<
TreeNode
>
item
=
populate
(
root
.
get
().
serialNr
()
+
": "
+
toString
(
root
.
get
()),
root
.
get
());
//new TreeItem<>(new TreeNode(root.get().serialNr() + ": " + toString(root.get()), root.get()));
treeProof
.
setRoot
(
item
);
}
}
expandRootToLeaves
(
getTreeProof
().
getRoot
());
//
expandRootToLeaves(getTreeProof().getRoot());
}
public
TreeView
<
TreeNode
>
getTreeProof
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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