Skip to content

Commit

Permalink
the instructions for interaction at bottom were sometimes inconsistent (
Browse files Browse the repository at this point in the history
  • Loading branch information
szecket authored Dec 20, 2024
1 parent 102d83a commit 275483b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/lsp/ui/views/preview-view.slint
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ component SelectionFrame {

changed has-hover => {
if self.has-hover {
StatusLineApi.help-text = @tr("<right-click> show popup, <double-click> select behind element, <{}> ignores component boundaries", Api.control-key-name);
StatusLineApi.help-text = @tr("<right-click> show selection popup, <double-click> select behind element, <{}> ignores component boundaries", Api.control-key-name);
} else {
StatusLineApi.help-text = "";
}
Expand Down Expand Up @@ -379,7 +379,7 @@ export component PreviewView {

changed has-hover => {
if self.has-hover && self.enabled {
StatusLineApi.help-text = @tr("<click> select element in current component, <{}-click> to select an element in any component", Api.control-key-name);
StatusLineApi.help-text = @tr("<click> select element in current component, <right-click> to select interactively, <{}-click> to select an element in any component", Api.control-key-name);
} else {
StatusLineApi.help-text = "";
}
Expand Down

0 comments on commit 275483b

Please sign in to comment.