Skip to content
Snippets Groups Projects
Commit fae727b8 authored by Jakob Voigts's avatar Jakob Voigts
Browse files

fixed channel double-click bug

Used to use spreadSelection->getSelectedId(), which wasn’t set properly
when the mouse wheel was used to change heights. Now goes directly for
the text value.
parent 0e28234b
No related branches found
No related tags found
No related merge requests found
......@@ -732,7 +732,9 @@ void sliderValueChanged (Slider* slider)
int LfpDisplayCanvas::getChannelHeight()
{
return spreads[spreadSelection->getSelectedId()-1].getIntValue();
//return spreads[spreadSelection->getSelectedId()-1].getIntValue();
return (int)spreadSelection->getText().getIntValue();
}
......@@ -1637,7 +1639,7 @@ void LfpDisplay::setChannelHeight(int r, bool resetSingle)
if (resetSingle && singleChan != -1)
{
std::cout << "width " << getWidth() << " numchans " << numChans << " height " << getChannelHeight() << std::endl;
setSize(getWidth(),numChans*ch);
setSize(getWidth(),numChans*getChannelHeight());
viewport->setScrollBarsShown(true,false);
viewport->setViewPosition(Point<int>(0,singleChan*r));
singleChan = -1;
......
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