-
Notifications
You must be signed in to change notification settings - Fork 5
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
Bug fixes for UI, autocomplete #219
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #219 +/- ##
============================================
- Coverage 47.58% 47.46% -0.12%
Complexity 493 493
============================================
Files 109 109
Lines 2482 2488 +6
Branches 265 266 +1
============================================
Hits 1181 1181
- Misses 1195 1201 +6
Partials 106 106
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
if (event.getCode() == KeyCode.ENTER && suggestionsList.isVisible()) { | ||
suggestionsList.setVisible(false); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good fix
primaryStage.sizeToScene(); | ||
primaryStage.setHeight(700); | ||
primaryStage.setMinWidth(1000); | ||
primaryStage.setMinHeight(700); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah the minimum and maximum size complaints
closes #192
closes #185
closes #158