Skip to content

Commit

Permalink
refactor: Untypo variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ja-he committed Oct 30, 2022
1 parent f848908 commit ef3543a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/control/cli/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ func NewController(
return screenWidth - rightFlexWidth, 0, tasksWidth, screenHeight - statusHeight
}
toolsDimensions := func() (x, y, w, h int) {
screenWidth, screeenHeight := screenSize()
return screenWidth - toolsWidth, 0, toolsWidth, screeenHeight - statusHeight
screenWidth, screenHeight := screenSize()
return screenWidth - toolsWidth, 0, toolsWidth, screenHeight - statusHeight
}
statusDimensions := func() (x, y, w, h int) {
screenWidth, screeenHeight := screenSize()
return 0, screeenHeight - statusHeight, screenWidth, statusHeight
screenWidth, screenHeight := screenSize()
return 0, screenHeight - statusHeight, screenWidth, statusHeight
}
dayViewMainPaneDimensions := screenDimensions
dayViewScrollablePaneDimensions := func() (x, y, w, h int) {
Expand Down

0 comments on commit ef3543a

Please sign in to comment.