mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 12:54:30 +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.bottom: treeView.top
|
||||||
anchors.bottomMargin: 8
|
anchors.bottomMargin: 8
|
||||||
placeholderText: "filter"
|
placeholderText: "filter"
|
||||||
onTextChanged: scriptsModel.filterRegExp = new RegExp("^.*" + text + ".*$")
|
onTextChanged: scriptsModel.filterRegExp = new RegExp("^.*" + text + ".*$", "i")
|
||||||
}
|
}
|
||||||
|
|
||||||
TreeView {
|
TreeView {
|
||||||
|
|
Loading…
Reference in a new issue