Do not print the internal struct name in LSP tooltip or error message

just strip the `slint::` or `slint::private_api::`
This is not a 100% match to the slint name (eg, LogicalPosition) but
it is better anyway
This commit is contained in:
Olivier Goffart 2024-11-03 21:13:47 +01:00
parent b44172be4f
commit 51e4d4562a
2 changed files with 7 additions and 2 deletions

View file

@ -5,7 +5,7 @@ export component Foo inherits Rectangle {
Text {
font-metrics: 42;
// ^error{Cannot assign to output property 'font-metrics'}
// ^^error{Cannot convert float to slint::private_api::FontMetrics}
// ^^error{Cannot convert float to FontMetrics}
}