mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- method SelectMgr_SelectableObject::HasSelection became virtual, unnecessary variable was removed; - redefined HasSelection method for multiple connected interactives; - AIS_InteractiveContext::AddOrRemoveSelected was corrected to use global selection owner; - test case for issue #27285
33 lines
637 B
Plaintext
33 lines
637 B
Plaintext
puts "========"
|
|
puts "OCC27285"
|
|
puts "========"
|
|
puts ""
|
|
##################################################################
|
|
puts "Visualization - selection of AIS_MultipleConnectedInteractive is broken"
|
|
##################################################################
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
vinit
|
|
vsetdispmode 1
|
|
|
|
box b 100 100 100
|
|
vdisplay b
|
|
|
|
vconnect bc 0 0 300 b
|
|
|
|
vfit
|
|
|
|
vchangeselected b
|
|
vchangeselected bc
|
|
|
|
if {[vnbselected] != "2"} {
|
|
puts "ERROR: only one object is selected"
|
|
}
|
|
|
|
if {[string match *Selected* [vstate bc]] != "1"} {
|
|
puts "ERROR: multiple connected interactive object is not selected"
|
|
}
|
|
|
|
set only_screen 1
|