Skip to content

Commit 5e6b8fa

Browse files
committed
Disable mocks panel and step back buttons
You can still step back with slide in this version, this will be changed later.
1 parent dad2e6b commit 5e6b8fa

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/main/kotlin/be/ugent/topl/mio/ui/InteractiveDebugger.kt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,11 @@ class InteractiveDebugger(
233233
contentPane.add(toolBarPanel, BorderLayout.NORTH)
234234
}
235235
toolBar.add(pauseButton)
236-
toolBar.add(stepBackButton)
236+
//toolBar.add(stepBackButton)
237237
toolBar.add(stepOverButton)
238238
toolBar.add(stepIntoButton)
239239
toolBar.addSeparator()
240-
toolBar.add(stepBackLineButton)
240+
//toolBar.add(stepBackLineButton)
241241
toolBar.add(stepLineButton)
242242
toolBar.addSeparator()
243243
toolBar.add(flashButton)
@@ -495,9 +495,10 @@ class MultiversePanel(private val multiverseDebugger: MultiverseDebugger, config
495495
//add(JScrollPane(graphPanel))
496496
val scrollpane = JScrollPane(graphPanel)
497497
graphPanel.associatedScrollPane = scrollpane
498-
add(JSplitPane(JSplitPane.VERTICAL_SPLIT, scrollpane, mockPanel).apply {
498+
/*add(JSplitPane(JSplitPane.VERTICAL_SPLIT, scrollpane, mockPanel).apply {
499499
resizeWeight = 0.7
500-
})
500+
})*/
501+
add(scrollpane)
501502
//add(OverridesPanel(), BorderLayout.EAST)
502503
add(JPanel(FlowLayout(FlowLayout.RIGHT)).apply {
503504
if (config.concolic) {

0 commit comments

Comments
 (0)