-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
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
IndexOutOfBounds Exception when chaning entry type with opened entry editor #3435
Comments
I could reliable reproduce this on win10 with latest master
@tobiasdiez Any idea?
|
This looks one of the other errors we had with the code editor a few weeks ago. Its not quite the same but very similar. There the fix was to correctly update the editor on the JavaFX thread. Thus I would suspect that some code is again invoked on the Swing thread. The change of entry type probably triggers some event (in the swing thread), which then updates the code editor. |
I got this IndexOutOfBounds exception we previously had:
I more or less could reproduce it: Have an entry with some required fields set (e.g. article), change entry type to WWW, and then back to article. Entry editor has to stay open.
The method which is responsible for changing type: in BasePanel
private void changeType(List<BibEntry> entries, String newType) {
You will probably get this exception (Master on Win10).
The text was updated successfully, but these errors were encountered: