Home
Options

Is there a way to Prevent scrolling on `Util.ReadLine`?

edited October 2014
I'm displaying a list of information in the query results window including some Hyperlinqs which can be used to change some of the data. On click, they prompt the user to input some information using Util.ReadLine, but every time this happens the query results window scrolls to the bottom automatically. This causes the context of the input to be lost.

This can be shown with the following C# Statements query:

new Hyperlinq(() => Util.ReadLine(), "CLICK ME").Dump(); Enumerable.Range(1, 1000).Dump();

Simply run the query and click the linq at the top, it will automatically scroll to the bottom. This happens whether or not "Auto Scroll Results to End" is selected.

Is there a way that I'm missing which would prevent (or control) this behavior?

Comments

Sign In or Register to comment.