Skip to content

Commit

Permalink
Merge pull request #52 from Shin-703/master
Browse files Browse the repository at this point in the history
fix highlight register pane
  • Loading branch information
privat authored Jul 18, 2024
2 parents 2cc1b1b + 29982e7 commit e4c8bac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/rars/venus/run/RunStepAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ public void update(Observable o, Object simulator) {
}
};
Simulator.getInstance().addObserver(stopListener);
executePane.getRegistersWindow().clearHighlighting(); //clears highlight of previous step
//clears highlight of previous step
executePane.getRegistersWindow().clearHighlighting();
executePane.getFloatingPointWindow().clearHighlighting();
executePane.getControlAndStatusWindow().clearHighlighting();
executePane.getDataSegmentWindow().clearHighlighting();

Globals.program.startSimulation(1, null);
Expand Down

0 comments on commit e4c8bac

Please sign in to comment.