Make filter in Running Scripts window be case-insensitive

This commit is contained in:
David Rowe 2016-01-16 16:29:01 +13:00
parent 29b9592c8c
commit 0b71f1e1b8

View file

@ -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 {