Skip to content

Commit

Permalink
Fixing a bug with screen dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
daonb committed Dec 6, 2023
1 parent 17b0798 commit cf66883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ export class Pane extends Cell {
fontFamily: "FiraCode",
fontSize: this.fontSize * this.gate.fontScale,
theme: this.theme,
rows: props["rows"] | 24,
cols: props["cols"] | 80,
rows: props["rows"] || 24,
cols: props["cols"] || 80,
allowProposedApi: true,
/* TODO: restore this. commented because it silences spotify
bellStyle: "sound",
Expand Down

0 comments on commit cf66883

Please sign in to comment.