diff --git a/tools/lsp/ui/views/preview-view.slint b/tools/lsp/ui/views/preview-view.slint index a6a8c556b8a..7164492f0c4 100644 --- a/tools/lsp/ui/views/preview-view.slint +++ b/tools/lsp/ui/views/preview-view.slint @@ -88,7 +88,7 @@ component SelectionFrame { changed has-hover => { if self.has-hover { - StatusLineApi.help-text = @tr(" show popup, select behind element, <{}> ignores component boundaries", Api.control-key-name); + StatusLineApi.help-text = @tr(" show selection popup, select behind element, <{}> ignores component boundaries", Api.control-key-name); } else { StatusLineApi.help-text = ""; } @@ -379,7 +379,7 @@ export component PreviewView { changed has-hover => { if self.has-hover && self.enabled { - StatusLineApi.help-text = @tr(" select element in current component, <{}-click> to select an element in any component", Api.control-key-name); + StatusLineApi.help-text = @tr(" select element in current component, to select interactively, <{}-click> to select an element in any component", Api.control-key-name); } else { StatusLineApi.help-text = ""; }