aboutsummaryrefslogtreecommitdiffstats
path: root/commands/compose/detach.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/detach.go')
-rw-r--r--commands/compose/detach.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/compose/detach.go b/commands/compose/detach.go
index 487bf225..014301f2 100644
--- a/commands/compose/detach.go
+++ b/commands/compose/detach.go
@@ -4,7 +4,7 @@ import (
"fmt"
"strings"
- "git.sr.ht/~rjarry/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/app"
)
type Detach struct{}
@@ -17,14 +17,14 @@ func (Detach) Aliases() []string {
return []string{"detach"}
}
-func (Detach) Complete(aerc *widgets.Aerc, args []string) []string {
- composer, _ := aerc.SelectedTabContent().(*widgets.Composer)
+func (Detach) Complete(aerc *app.Aerc, args []string) []string {
+ composer, _ := aerc.SelectedTabContent().(*app.Composer)
return composer.GetAttachments()
}
-func (Detach) Execute(aerc *widgets.Aerc, args []string) error {
+func (Detach) Execute(aerc *app.Aerc, args []string) error {
var path string
- composer, _ := aerc.SelectedTabContent().(*widgets.Composer)
+ composer, _ := aerc.SelectedTabContent().(*app.Composer)
if len(args) > 1 {
path = strings.Join(args[1:], " ")