Skip to content

Commit

Permalink
internal/splash: implement IsClosed for nosplash
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Oct 20, 2023
1 parent fbc8718 commit 4c3fc8e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/splash/nosplash.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ func (ui *Splash) Progress(progress float32) {
func (ui *Splash) Close() {
}

func (ui *Splash) IsClosed() {
return true
}

func (ui *Splash) Dialog(title, msg string) {
log.Printf("Dialog: %s %s", title, msg)
}
Expand Down

0 comments on commit 4c3fc8e

Please sign in to comment.