Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Mar 18, 2024
1 parent c63a4e9 commit 99bed6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,9 @@ function stateModelFactory() {
* #method
* unused here, but can be used by derived classes to add extra items
*/
extraViewMenuItems() {},
extraViewMenuItems() {
return []
},
/**
* #getter
*/
Expand Down Expand Up @@ -705,7 +707,7 @@ function stateModelFactory() {
* #getter
*/
get fontSize() {
return Math.min(Math.max(8, self.rowHeight - 8), 18)
return Math.min(Math.max(6, self.rowHeight - 8), 18)
},
/**
* #getter
Expand Down

0 comments on commit 99bed6c

Please sign in to comment.