Kaydet (Commit) 522cbe4e authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Fridrich Štrba

prevent that early return prevents further user interaction

Change-Id: I24f814a402d2b8af3ddf888719b78d3158c2a38f
üst cff418d6
...@@ -293,7 +293,6 @@ void GL3DBarChart::clickedAt(const Point& /*rPos*/, sal_uInt16 nButtons) ...@@ -293,7 +293,6 @@ void GL3DBarChart::clickedAt(const Point& /*rPos*/, sal_uInt16 nButtons)
if(nButtons != MOUSE_LEFT) if(nButtons != MOUSE_LEFT)
return; return;
mbBlockUserInput = true;
sal_uInt32 nId = 5; sal_uInt32 nId = 5;
/* /*
{ {
...@@ -309,6 +308,8 @@ void GL3DBarChart::clickedAt(const Point& /*rPos*/, sal_uInt16 nButtons) ...@@ -309,6 +308,8 @@ void GL3DBarChart::clickedAt(const Point& /*rPos*/, sal_uInt16 nButtons)
if(itr == maBarMap.end()) if(itr == maBarMap.end())
return; return;
mbBlockUserInput = true;
const BarInformation& rBarInfo = itr->second; const BarInformation& rBarInfo = itr->second;
mnStepsTotal = 100; mnStepsTotal = 100;
mnStep = 0; mnStep = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment