Change summary
tui/bubble.go | 2 --
tui/commands.go | 7 -------
2 files changed, 9 deletions(-)
Detailed changes
@@ -3,7 +3,6 @@ package tui
import (
"fmt"
"smoothie/git"
- "smoothie/tui/bubbles/commits"
"smoothie/tui/bubbles/repo"
"smoothie/tui/bubbles/selection"
"smoothie/tui/style"
@@ -61,7 +60,6 @@ type Bubble struct {
boxes []tea.Model
activeBox int
repoSelect *selection.Bubble
- commitsLog *commits.Bubble
}
func NewBubble(cfg *Config, sCfg *SessionConfig) *Bubble {
@@ -64,13 +64,6 @@ func (b *Bubble) setupCmd() tea.Msg {
}
b.repoSelect = selection.NewBubble(rs, b.styles)
b.boxes[0] = b.repoSelect
- /*
- b.commitsLog = commits.NewBubble(
- b.height-verticalPadding-2,
- boxRightWidth-horizontalPadding-2,
- b.repoSource.GetCommits(200),
- )
- */
ir := -1
if b.initialRepo != "" {
for i, me := range b.repoMenu {