aboutsummaryrefslogtreecommitdiffstats
path: root/termui/termui.go
diff options
context:
space:
mode:
Diffstat (limited to 'termui/termui.go')
-rw-r--r--termui/termui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/termui/termui.go b/termui/termui.go
index 3e7f43b9..15476d89 100644
--- a/termui/termui.go
+++ b/termui/termui.go
@@ -8,8 +8,8 @@ import (
"github.com/pkg/errors"
"github.com/MichaelMure/git-bug/cache"
+ "github.com/MichaelMure/git-bug/commands/input"
"github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/input"
"github.com/MichaelMure/git-bug/query"
"github.com/MichaelMure/git-bug/util/text"
)
@@ -250,7 +250,7 @@ func addCommentWithEditor(bug *cache.BugCache) error {
return errTerminateMainloop
}
-func editCommentWithEditor(bug *cache.BugCache, target entity.Id, preMessage string) error {
+func editCommentWithEditor(bug *cache.BugCache, target entity.CombinedId, preMessage string) error {
// This is somewhat hacky.
// As there is no way to pause gocui, run the editor and restart gocui,
// we have to stop it entirely and start a new one later.