mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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