Revert onTextChange

This commit is contained in:
HellAholic 2025-03-17 16:35:18 +01:00
parent 3b5432912c
commit 7204cdfa96

View file

@ -98,15 +98,7 @@ UM.PreferencesPage
placeholderText: catalog.i18nc("@label:textbox", "Filter...")
onTextChanged:
{
if (text !== lastFilterText)
{
lastFilterText = text;
definitionsModel.filter = {"i18n_label|i18n_description": "*" + text};
}
}
property string lastFilterText: ""
onTextChanged: definitionsModel.filter = {"i18n_label|i18n_description": "*" + text}
}
Cura.ComboBox