diff options
-rw-r--r-- | src/local/container.nim | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/local/container.nim b/src/local/container.nim index 70f8964b..384ac6f2 100644 --- a/src/local/container.nim +++ b/src/local/container.nim @@ -226,7 +226,8 @@ proc newContainer*(config: BufferConfig; loaderConfig: LoaderClientConfig; mainConfig: mainConfig, flags: flags, luctx: luctx, - redraw: true + redraw: true, + lastPeek: HoverType.high ) func location(container: Container): URL {.jsfget.} = @@ -1630,15 +1631,15 @@ proc peek(container: Container) {.jsfunc.} = container.alert($container.url) proc clearHover*(container: Container) = - container.lastPeek = low(HoverType) + container.lastPeek = HoverType.high proc peekCursor(container: Container) {.jsfunc.} = var p = container.lastPeek while true: - if p < high(HoverType): + if p < HoverType.high: inc p else: - p = low(HoverType) + p = HoverType.low if container.hoverText[p] != "" or p == container.lastPeek: break if container.hoverText[p] != "": |