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
The following should probably be reviewed:
https://github.com/imagej/ImageJ/blob/master/ij/gui/ImageWindow.java
Line 458 if (initialLoc!=null && ! bounds.equals(initialLoc) && !IJ.isMacro()
Referring to the code: bounds.equals(initialLoc)
variable bounds is of type java.awt.Rectangle variable initialLoc is of type java.awt.Point
so the equals() method will always return false.
The text was updated successfully, but these errors were encountered:
The ImageJ 1.45g14 daily build changes line 458 of ImageWindow.java from
if (initialLoc!=null && ! bounds.equals(initialLoc) && !IJ.isMacro()
to
if (!IJ.isMacro()
Sorry, something went wrong.
No branches or pull requests
The following should probably be reviewed:
https://github.com/imagej/ImageJ/blob/master/ij/gui/ImageWindow.java
Line 458
if (initialLoc!=null && ! bounds.equals(initialLoc) && !IJ.isMacro()
Referring to the code: bounds.equals(initialLoc)
so the equals() method will always return false.
The text was updated successfully, but these errors were encountered: