mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030672: Visualization - AIS_InteractiveContext::SetLocation() sets invalid selection BVH flag to removed object
SelectMgr_SelectionManager::Remove() now deactivates selection before removal.
This commit is contained in:
parent
245cbf9441
commit
66278500db
@ -90,6 +90,7 @@ void SelectMgr_SelectionManager::Remove (const Handle(SelectMgr_SelectableObject
|
|||||||
{
|
{
|
||||||
mySelector->RemoveSelectionOfObject (theObject, aSelIter.Value());
|
mySelector->RemoveSelectionOfObject (theObject, aSelIter.Value());
|
||||||
aSelIter.Value()->UpdateBVHStatus (SelectMgr_TBU_Remove);
|
aSelIter.Value()->UpdateBVHStatus (SelectMgr_TBU_Remove);
|
||||||
|
mySelector->Deactivate (aSelIter.Value());
|
||||||
}
|
}
|
||||||
mySelector->RemoveSelectableObject (theObject);
|
mySelector->RemoveSelectableObject (theObject);
|
||||||
}
|
}
|
||||||
|
21
tests/bugs/vis/bug30672
Normal file
21
tests/bugs/vis/bug30672
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
puts "============="
|
||||||
|
puts "0030672: Visualization - AIS_InteractiveContext::SetLocation() sets invalid selection BVH flag to removed object"
|
||||||
|
puts "============="
|
||||||
|
|
||||||
|
pload MODELING VISUALIZATION
|
||||||
|
box b 1 2 3
|
||||||
|
vclear
|
||||||
|
vinit View1
|
||||||
|
vaxo
|
||||||
|
vdisplay -dispMode 1 -highMode 1 b
|
||||||
|
vfit
|
||||||
|
vremove -context b
|
||||||
|
vlocation b -setLocation 2 0 0
|
||||||
|
vdisplay -dispMode 1 b
|
||||||
|
vmoveto 200 200
|
||||||
|
if { [vreadpixel 150 150 -rgb -name] != "BLACK" } { puts "Error: wrong prs location" }
|
||||||
|
if { [vreadpixel 300 300 -rgb -name] != "DARKGOLDENROD3" } { puts "Error: wrong sel location" }
|
||||||
|
vmoveto 300 300
|
||||||
|
if { [vreadpixel 300 300 -rgb -name] != "DARKTURQUOISE" } { puts "Error: wrong highlighting" }
|
||||||
|
|
||||||
|
vdump $imagedir/${casename}.png
|
Loading…
x
Reference in New Issue
Block a user