We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you create an editor using the minLines/maxLines API, so something like
minLines
maxLines
var editor = ace.edit("editor3"); editor.setOptions({ maxLines: 2, value: "console.log('hello world')\n".repeat(10), });
which I added to the resize demo: https://github.com/ajaxorg/ace/blob/master/demo/autoresize.html
the vertical scrollbar is not shown for less than 3 lines, see below:
I expect it to be shown as a user doesn't have a good indication right now that there is more content underneath.
It's shown for 3 or more lines correctly.
Scrollbar is not rendered.
No response
1.32.6
The text was updated successfully, but these errors were encountered:
Seems to be intentional, the code is in https://github.com/ajaxorg/ace/blob/master/src/virtual_renderer.js#L1053 and https://github.com/ajaxorg/ace/blob/master/src/virtual_renderer.js#L1081.
It might make sense to only enable the vertical scrollbar but not the horizontal one to still allow the Ace as Input component use case.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
If you create an editor using the
minLines
/maxLines
API, so something likewhich I added to the resize demo: https://github.com/ajaxorg/ace/blob/master/demo/autoresize.html
the vertical scrollbar is not shown for less than 3 lines, see below:
Expected Behavior
I expect it to be shown as a user doesn't have a good indication right now that there is more content underneath.
It's shown for 3 or more lines correctly.
Current Behavior
Scrollbar is not rendered.
Reproduction Steps
Possible Solution
No response
Additional Information/Context
No response
Ace Version / Browser / OS / Keyboard layout
1.32.6
The text was updated successfully, but these errors were encountered: