Skip to content
Snippets Groups Projects
Verified Commit b1ebba39 authored by tristan.muller's avatar tristan.muller Committed by philippe.verley_ird.fr
Browse files

Make the default filtering type to Equal

parent 2b5ae0fc
No related branches found
No related tags found
No related merge requests found
......@@ -168,8 +168,8 @@ public class JXVoxelFilter extends FrameView {
});
addLocaleCallback((locale) -> {
final ComboBoxModel model = new DefaultComboBoxModel(new String[]{
bundle.getString("voxelFilter_filteringComboBox_lesser"),
bundle.getString("voxelFilter_filteringComboBox_equal"),
bundle.getString("voxelFilter_filteringComboBox_lesser"),
bundle.getString("voxelFilter_filteringComboBox_greater"),
bundle.getString("voxelFilter_filteringComboBox_notequal"),});
filteringComboBox.setModel(model);
......
......@@ -31,8 +31,8 @@ import net.jcip.annotations.Immutable;
*/
@Immutable
public enum VoxelFilteringType {
LESSER,
EQUAL,
LESSER,
GREATER,
NOTEQUAL,
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment