Fix lists.d for dlangide compilation

This commit is contained in:
Grim Maple 2022-04-16 13:48:22 +03:00
parent 585b31ae30
commit d2622d54bf
1 changed files with 2 additions and 2 deletions

View File

@ -1485,9 +1485,9 @@ class StringListWidget : ListWidget {
if (timePassed > dur!"msecs"(500)) _searchString = ""d;
} else {
auto timePassed = _stopWatch.peek.dto!("seconds", float)(); // dtop is std.datetime.to
auto timePassed = (cast(float)_stopWatch.peek.total!"msecs")/1000.0f;
if (timePassed > 0.5) _searchString = ""d;
if (timePassed > 0.5) _searchString = ""d; // TODO_GRIM: make everything look-alike
}
_searchString ~= to!dchar(event.text.toUTF8);
_stopWatch.reset;