Skip to content

Commit

Permalink
Change default number of columns in simulator, and decrease font size…
Browse files Browse the repository at this point in the history
… of node name in simulator
  • Loading branch information
lorchrob committed May 23, 2024
1 parent 84741ce commit bbc89cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion interpreter/src/app/simulation/simulation.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ body {

.componentName {
text-align: left;
font-size: 25px;
font-size: 17px;
}

.streamName {
Expand Down
2 changes: 1 addition & 1 deletion interpreter/src/app/simulation/simulation.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class SimulationComponent implements OnInit {
public numCols(): number {
let nCols = this._components[0].streams[0].instantValues.length;
if (nCols == 0) {
nCols = 3;
nCols = 10;
this.changeColumns(nCols);
}
return nCols;
Expand Down

0 comments on commit bbc89cc

Please sign in to comment.