mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 17:30:35 +05:00
OCC-7.4-porting-for-CurveCreator_Widget
This commit is contained in:
parent
d6128b41ec
commit
24fb7ae492
@ -1186,12 +1186,16 @@ void CurveCreator_Widget::onMouseRelease( SUIT_ViewWindow* theWindow, QMouseEven
|
|||||||
filter->AddShape(exp.Current());
|
filter->AddShape(exp.Current());
|
||||||
}
|
}
|
||||||
aCtx->AddFilter(filter);
|
aCtx->AddFilter(filter);
|
||||||
|
#if OCC_VERSION_LARGE <= 0x07030000
|
||||||
if (aCtx->HasOpenedContext())
|
if (aCtx->HasOpenedContext())
|
||||||
{
|
{
|
||||||
Handle(AIS_LocalContext) aLctx = aCtx->LocalContext();
|
Handle(AIS_LocalContext) aLctx = aCtx->LocalContext();
|
||||||
aLctx->Filter()->Clear();
|
aLctx->Filter()->Clear();
|
||||||
aLctx->AddFilter(filter);
|
aLctx->AddFilter(filter);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
// TODO: check if something required
|
||||||
|
#endif
|
||||||
//}
|
//}
|
||||||
|
|
||||||
// Initialize the single selection if start and end points are equal,
|
// Initialize the single selection if start and end points are equal,
|
||||||
|
Loading…
Reference in New Issue
Block a user