This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
□ The Image>Scale and Image>Adjust>Size commands now scale stacks and hyperstacks in the Z dimension. □ The Image>Color>Merge Channels command now works with hyperstacks. □ Added the File>New>Hyperstack command, an alias for Image> Hyperstacks>New Hyperstack. □ Analyze>Tools>Fractal Box Counter writes results that can be read by macros. □ Added the List.setCommands, setFont("user"), getInfo ("font.name"), getValue("font.size") and getValue ("font.height") macro functions. □ Thanks to Johannes Schindelin, added the NonBlockingGenericDialog class, now used by the Process>Batch> Process command. □ Fixed a bug that sometimes caused the Image>Adjust>Brightness/ Contrast "Apply" function to fail with RGB stacks. □ Fixed a bug that sometimes caused Image>Color>Split Channels to display a "save changes?" dialog box. □ Fixed a bug that caused File>Save As>Image Sequence to throw an exception if the window was closed before all the images in the stack were saved.
- Loading branch information
Showing
31 changed files
with
1,215 additions
and
703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package ij.gui; | ||
import ij.IJ; | ||
import java.awt.event.ActionEvent; | ||
|
||
/** This is an xtension of GenericDialog that is non-model. | ||
* @author Johannes Schindelin | ||
*/ | ||
public class NonBlockingGenericDialog extends GenericDialog { | ||
public NonBlockingGenericDialog(String title) { | ||
super(title, null); | ||
setModal(false); | ||
} | ||
|
||
public synchronized void showDialog() { | ||
super.showDialog(); | ||
try { | ||
wait(); | ||
} catch (InterruptedException e) { } | ||
} | ||
|
||
public synchronized void actionPerformed(ActionEvent e) { | ||
super.actionPerformed(e); | ||
if (wasOKed() || wasCanceled()) | ||
notify(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.