Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
sarah.grebing
ProofScriptParser
Commits
fa3f235b
Commit
fa3f235b
authored
Sep 18, 2017
by
Sarah Grebing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor change for examples
parent
972e934f
Pipeline
#13761
failed with stage
in 2 minutes and 22 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controller/DebuggerMain.java
...edu/kit/iti/formal/psdbg/gui/controller/DebuggerMain.java
+5
-6
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controls/ScriptController.java
...u/kit/iti/formal/psdbg/gui/controls/ScriptController.java
+1
-1
No files found.
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controller/DebuggerMain.java
View file @
fa3f235b
...
...
@@ -279,6 +279,7 @@ public class DebuggerMain implements Initializable {
}
}
/* public InspectionViewsController getInspectionViewsController() {
return inspectionViewsController;
}
...
...
@@ -287,11 +288,7 @@ public class DebuggerMain implements Initializable {
return FACADE;
}
public void showCodeDock(ActionEvent actionEvent) {
if (!javaAreaDock.isDocked()) {
javaAreaDock.dock(dockStation, DockPos.RIGHT);
}
}
*/
//region Actions: Execution
...
...
@@ -500,6 +497,7 @@ public class DebuggerMain implements Initializable {
ProgressBar
bar
=
new
ProgressBar
();
bar
.
progressProperty
().
bind
(
task
.
progressProperty
());
executorService
.
execute
(
task
);
this
.
showActiveInspector
(
null
);
}
}
...
...
@@ -754,7 +752,8 @@ public class DebuggerMain implements Initializable {
public
void
showActiveInspector
(
ActionEvent
actionEvent
)
{
if
(!
activeInspectorDock
.
isDocked
()
&&
!
activeInspectorDock
.
isFloating
())
{
activeInspectorDock
.
dock
(
dockStation
,
DockPos
.
CENTER
);
activeInspectorDock
.
dock
(
dockStation
,
DockPos
.
RIGHT
);
}
}
...
...
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controls/ScriptController.java
View file @
fa3f235b
...
...
@@ -150,7 +150,7 @@ public class ScriptController {
if
(
lastScriptArea
==
null
)
dockNode
.
dock
(
parent
,
DockPos
.
LEFT
);
else
dockNode
.
dock
(
parent
,
DockPos
.
CENTER
,
getDockNode
(
lastScriptArea
));
dockNode
.
dock
(
parent
,
DockPos
.
LEFT
,
getDockNode
(
lastScriptArea
));
area
.
dirtyProperty
().
addListener
(
new
ChangeListener
<
Boolean
>()
{
@Override
...
...
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