AutoComplete
AutoComplete copied to clipboard
Parameter Autocompletion Causes Rendering Problems
I use RSyntaxTextArea + AutoComplete on Windows 11
Encountered on Java 19, 21, 8
When parameter autocompletion is enabled like required for FunctionCompletion and a completion is acceptet and the parameter help popup is shown the rendering of all components just completly breaks this includes my Programm and the Official Example
I have done a litle debugging myself but found no imidiate problemm
thx for any help in advance
I can't reproduce this, but I'm on Windows 10.
- Are there any stack traces in the console?
- If you set a breakpoint in
AutoCompletePopupWindow.setVisible(boolean)and walk through it conditionally when the argument isfalse, do you see any odd behavior? Issuper.setVisible(false)actually called?
@bobbylight
No Stack Traces
When i try to step into super.setVisible(false) it will just skip it (without breakpoint inside it)
but if i put a breakpoint inside super.setVisible(false) it will break with argument = false
so calling could be off
thats the only odd behaivior i noticed
also tryed after gradle:clean no diference
could it be a issue of my setup?
@bobbylight
Also here is my code if you want to see if its a problem caused by my https://github.com/FireDragon91245/Scriptable-Cellular-Automaton
Its very WIP and im at best mediocre in java so -_- excuse my code