Skip to content

Commit

Permalink
box size for rtt fixed to 4 voxels, independant of resolution.
Browse files Browse the repository at this point in the history
  • Loading branch information
chamberm committed Jul 28, 2015
1 parent c495608 commit 8dabf90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/TrackingWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ void TrackingWindow::OnSelectFileHARDI( wxCommandEvent& WXUNUSED(event) )

SelectionObject* pNewSelObj = m_pMainFrame->getCurrentSelectionObject();

Vector boxSize(2/step,2/step,2/step);
Vector boxSize(4,4,4);
pNewSelObj->setSize(boxSize);
}
if(m_pTextFA->IsEnabled())
Expand Down

0 comments on commit 8dabf90

Please sign in to comment.