Skip to content

Commit

Permalink
fix-lint: screen split explicit state
Browse files Browse the repository at this point in the history
  • Loading branch information
F1bonacc1 committed Oct 2, 2024
1 parent a5fb990 commit 0ff2a1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tui/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ import (
"github.com/rivo/tview"
)

type ScrSplitState int
type scrSplitState int
type commandType int

const (
LogFull ScrSplitState = 0
ProcFull = 1
LogProcHalf = 2
LogFull scrSplitState = 0
ProcFull scrSplitState = 1
LogProcHalf scrSplitState = 2
)

const (
Expand Down Expand Up @@ -57,7 +57,7 @@ type pcView struct {
procNames []string
logFollow bool
logSelect bool
scrSplitState ScrSplitState
scrSplitState scrSplitState
loggedProc string
shortcuts *ShortCuts
procCountCell *tview.TableCell
Expand Down

0 comments on commit 0ff2a1e

Please sign in to comment.