mirror of https://github.com/buggins/dlangide.git
editors - search support Ctrl+F, initial version; #109
This commit is contained in:
parent
55007a6abe
commit
bdebc90cc1
2
dub.json
2
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"
|
||||
},
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.7.64
|
||||
v0.7.65
|
Loading…
Reference in New Issue