mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 10:14:52 +02:00
Make filter in Running Scripts window be case-insensitive
This commit is contained in:
parent
29b9592c8c
commit
0b71f1e1b8
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,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