diff --git a/dub.json b/dub.json index b61f458..dcc4675 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"], "dependencies": { - "dlangui": "==0.9.115", + "dlangui": "==0.9.119", "dcd": "~>0.9.1" }, diff --git a/src/dlangide/ui/searchPanel.d b/src/dlangide/ui/searchPanel.d index d0ad15d..447baff 100644 --- a/src/dlangide/ui/searchPanel.d +++ b/src/dlangide/ui/searchPanel.d @@ -241,7 +241,7 @@ class SearchWidget : TabWidget { bool findText(dstring source) { Log.d("Finding " ~ source); - _resultLog.setTextToHighlight(""d, false); + _resultLog.setTextToHighlight(""d, 0); _resultLog.text = ""d; _matchedList = []; _resultLogMatchIndex = 0; @@ -285,7 +285,7 @@ class SearchWidget : TabWidget { default: assert(0); } - _resultLog.setTextToHighlight(source, true); + _resultLog.setTextToHighlight(source, TextSearchFlag.CaseSensitive); return true; } diff --git a/views/VERSION b/views/VERSION index fa3421c..f7c7422 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.68 \ No newline at end of file +v0.7.70 \ No newline at end of file