Skip to content

Commit

Permalink
Update multiple line continue error for non-mouse possibility
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Jul 10, 2020
1 parent d05e3ea commit 5d52df4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ en:
title: Continue
description: Continue this line.
not_eligible: No line can be continued here.
multiple: Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.
multiple: Several lines can be continued here. Add one to the selection to continue.
annotation:
line: Continued a line.
area: Continued an area.
Expand Down
2 changes: 1 addition & 1 deletion dist/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"title": "Continue",
"description": "Continue this line.",
"not_eligible": "No line can be continued here.",
"multiple": "Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.",
"multiple": "Several lines can be continued here. Add one to the selection to continue.",
"annotation": {
"line": "Continued a line.",
"area": "Continued an area."
Expand Down

1 comment on commit 5d52df4

@maro-21
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I used to have a problem with continuing a line connected to the other one because this message was confusing.
It's still not entirely correct. To continue a line one has to:

  • select the line
  • press and hold [Shift]
  • click the endpoint
  • press [A]

So technically to continue the specific line, there must be two features on selection: the line and the endpoint.
So adding only the line to the selection is insufficient.

Please sign in to comment.