mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 18:14:05 +02:00
Merge pull request #6858 from ctrlaltdavid/20780
Make filter in Running Scripts window be case-insensitive
This commit is contained in:
commit
347293a6a4
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ Window {
|
|||
anchors.bottom: treeView.top
|
||||
anchors.bottomMargin: 8
|
||||
placeholderText: "filter"
|
||||
onTextChanged: scriptsModel.filterRegExp = new RegExp("^.*" + text + ".*$")
|
||||
onTextChanged: scriptsModel.filterRegExp = new RegExp("^.*" + text + ".*$", "i")
|
||||
}
|
||||
|
||||
TreeView {
|
||||
|
|
Loading…
Reference in a new issue