mirror of https://github.com/buggins/dlangui.git
Fix lists.d for dlangide compilation
This commit is contained in:
parent
585b31ae30
commit
d2622d54bf
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue