Skip to content

Commit

Permalink
mrview: fix incorrect change
Browse files Browse the repository at this point in the history
  • Loading branch information
dchristiaens authored Nov 22, 2016
1 parent ed11633 commit 628b853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialog/image_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ namespace MR

auto DW_scheme = DWI::parse_DW_scheme (H);
if (DW_scheme.rows()) {
if (DW_scheme.cols() >= 4) {
if (DW_scheme.cols() < 4) {
root->appendChild (new TreeItem ("Diffusion scheme", "(invalid)", root));
}
else {
Expand Down

0 comments on commit 628b853

Please sign in to comment.