Tooltip: Refactoring in a single global tooltip.

This commit is contained in:
ItsLemmy
2025-09-27 21:12:39 -04:00
parent 92460fc5c3
commit 0593543d7a
30 changed files with 532 additions and 382 deletions
+5 -5
View File
@@ -255,11 +255,11 @@ RowLayout {
// Ensure the model is filtered when popup opens
filterModel()
// Small delay to ensure the popup is fully rendered
Qt.callLater(function () {
if (searchInput && searchInput.inputItem) {
searchInput.inputItem.forceActiveFocus()
}
})
Qt.callLater(() => {
if (searchInput && searchInput.inputItem) {
searchInput.inputItem.forceActiveFocus()
}
})
}
}
}