-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
prevent maximize when mouse double clicked #25
base: experimental
Are you sure you want to change the base?
Conversation
Fixed a possible IndexOutOfBoundsException
On each push mvn verify will be executed on Ubuntu 18.04, latest MacOS and latest Windows using JDK 8
Added a github action that runs mvn verify on each push
Hello so basically this pull request is merging master branch into the experimental branch ? |
@@ -289,7 +290,11 @@ protected void setMoveControl(final Node node) { | |||
} else { | |||
//--------------------------Check here for Transparent Window-------------------------- | |||
//Rectangle2D wholeScreen = Screen.getScreensForRectangle(m.getScreenX(), m.getScreenY(), 1, 1).get(0).getBounds() | |||
Rectangle2D screen = Screen.getScreensForRectangle(m.getScreenX(), m.getScreenY(), 1, 1).get(0).getVisualBounds(); | |||
ObservableList<Screen> screens = Screen.getScreensForRectangle(m.getScreenX(), m.getScreenY(), 1, 1); | |||
if (screens.isEmpty()) { |
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.
This is a great one i haven't noticed this case :)
Is this pull request finished or it is work in progress? I haven't seen the fix for double mouse click on the changed code :) |
Having a look again today. |
mouse