Editing in external editor working - issue with Mouse

This commit is contained in:
Anis Ahmad
2020-06-21 04:43:43 +06:00
parent b9b468ea3f
commit f3637b4598
3 changed files with 80 additions and 10 deletions

View File

@@ -147,8 +147,10 @@ func (pane *TaskPane) ClearCompletedTasks() {
func (pane TaskPane) setHintMessage() {
if len(projectPane.projects) == 0 {
pane.hint.SetText("Welcome to the organized life!\n------------------------------\n Create TaskList/Project at the bottom of Projects pane.\n (Press p,n)")
pane.hint.SetText("Welcome to the organized life!\n------------------------------\n Create TaskList/Project at the bottom of Projects pane.\n (Press p,n) \n\nHelp - https://bit.ly/cli-task")
} else {
pane.hint.SetText("Select a TaskList/Project to load tasks.\nPress p,n to create new Project.")
pane.hint.SetText("Select a TaskList/Project to load tasks.\nPress p,n to create new Project.\n\nHelp - https://bit.ly/cli-task")
}
// Add: For help - https://bit.ly/cli-task
}