Skip to content

Commit bdd2684

Browse files
committed
Add a small i to icons that perform instruction level operations
1 parent e5b8c01 commit bdd2684

File tree

4 files changed

+138
-3
lines changed

4 files changed

+138
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,22 +133,22 @@ class InteractiveDebugger(
133133
updateEnabledButtons()
134134
updatePcLabel()
135135
}
136-
stepBackButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-back.svg"))
136+
stepBackButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-back-instruction.svg"))
137137
stepBackButton.addActionListener {
138138
println("Step back")
139139
//debugger.stepBack()
140140
debugger.stepBack(1, binaryInfo) {}
141141
updateStepBackButton()
142142
updatePcLabel()
143143
}
144-
stepOverButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-over.svg"))
144+
stepOverButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-over-instruction.svg"))
145145
stepOverButton.addActionListener {
146146
println("Step over")
147147
debugger.stepOver()
148148
updateStepBackButton()
149149
updatePcLabel()
150150
}
151-
stepIntoButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-into.svg"))
151+
stepIntoButton.icon = FlatSVGIcon(javaClass.getResource("/debug-step-into-instruction.svg"))
152152
stepIntoButton.addActionListener {
153153
println("Step into")
154154
debugger.stepInto()
Lines changed: 45 additions & 0 deletions
Loading
Lines changed: 45 additions & 0 deletions
Loading
Lines changed: 45 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)