Skip to content
Snippets Groups Projects
Commit a3635cdd authored by Josh Siegle's avatar Josh Siegle
Browse files

Remove changing cursor (causing bugs on OS X)

parent 8b4819f4
No related branches found
No related tags found
No related merge requests found
......@@ -787,16 +787,16 @@ void WaveAxes::mouseMove(const MouseEvent& event)
isOverThresholdSlider = true;
cursorType = MouseCursor::DraggingHandCursor;
// cursorType = MouseCursor::DraggingHandCursor;
} else if (y < h - 10.0f || y > h + 10.0f && isOverThresholdSlider){
} else if ((y < h - 10.0f || y > h + 10.0f) && isOverThresholdSlider){
thresholdColour = Colours::red;
repaint();
isOverThresholdSlider = false;
cursorType = MouseCursor::NormalCursor;
// cursorType = MouseCursor::NormalCursor;
}
......@@ -843,6 +843,7 @@ ProjectionAxes::ProjectionAxes(int projectionNum) : GenericAxes(projectionNum),
{
projectionImage = Image(Image::RGB, imageDim, imageDim, true);
clear();
//Graphics g(projectionImage);
//g.setColour(Colours::red);
//g.fillEllipse(20, 20, 300, 200);
......
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