Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
sarah.grebing
ProofScriptParser
Commits
21d8894d
Commit
21d8894d
authored
Jun 27, 2018
by
Sarah Grebing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bigfix in starting stepinto
parent
e718cec4
Pipeline
#23264
passed with stages
in 3 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controls/ProofTree.java
...java/edu/kit/iti/formal/psdbg/gui/controls/ProofTree.java
+4
-3
No files found.
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controls/ProofTree.java
View file @
21d8894d
...
...
@@ -162,15 +162,16 @@ public class ProofTree extends BorderPane {
public
void
expandRootToSentinels
()
{
if
(
getTreeProof
().
getRoot
()
==
null
)
{
if
(
root
.
get
()
!=
null
)
{
TreeItem
<
TreeNode
>
item
=
populate
(
"Proof"
,
root
.
get
());
//populate(root.get().serialNr() + ": " +
toString(
root.get()), root.get());
TreeItem
<
TreeNode
>
item
=
treeCreation
.
populate
(
"Proof"
,
root
.
get
());
//
populate(root.get().serialNr() + ": " + root.get()
.serialNr(
), root.get());
//val treeNode = new TreeNode("Proof", root.get());
treeProof
.
setRoot
(
item
);
}
}
//
expandRootToLeaves(getTreeProof().getRoot());
expandRootToLeaves
(
getTreeProof
().
getRoot
());
}
public
TreeView
<
TreeNode
>
getTreeProof
()
{
...
...
Write
Preview
Markdown
is supported
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