diff --git a/dub.json b/dub.json index a6b28f7..ed274b2 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.111", + "dlangui": "==0.9.112", "dcd": "~>0.9.1" }, diff --git a/src/dlangide/ui/searchPanel.d b/src/dlangide/ui/searchPanel.d index de53897..d0ad15d 100644 --- a/src/dlangide/ui/searchPanel.d +++ b/src/dlangide/ui/searchPanel.d @@ -30,10 +30,6 @@ class SearchLogWidget : LogWidget { onThemeChanged(); } - protected dstring _textToHighlight; - @property dstring textToHighlight() { return _textToHighlight; } - @property void textToHighlight(dstring s) { _textToHighlight = s; } - protected uint _filenameColor = 0x0000C0; protected uint _errorColor = 0xFF0000; protected uint _warningColor = 0x606000; @@ -245,7 +241,7 @@ class SearchWidget : TabWidget { bool findText(dstring source) { Log.d("Finding " ~ source); - _resultLog.textToHighlight = ""d; + _resultLog.setTextToHighlight(""d, false); _resultLog.text = ""d; _matchedList = []; _resultLogMatchIndex = 0; @@ -289,7 +285,7 @@ class SearchWidget : TabWidget { default: assert(0); } - _resultLog.textToHighlight = source; + _resultLog.setTextToHighlight(source, true); return true; } diff --git a/views/VERSION b/views/VERSION index f05385b..4fe00bc 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.64 \ No newline at end of file +v0.7.65 \ No newline at end of file