1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026888: Crash in Java ImportExport sample on shape deleting

Corrected behaviour of 3d viewer after shape deleting in qt samples.
Corrected behaviour of toolbar buttons after shape deleting in csharp samples.
This commit is contained in:
ski 2015-12-11 15:29:23 +03:00 committed by bugmaster
parent f4264b5adb
commit 4d6554d142
4 changed files with 5 additions and 0 deletions

View File

@ -402,6 +402,7 @@ namespace IE_WPF_D3D
public void Delete ()
{
View.EraseObjects ();
SelectionChanged ();
}
protected void MultiDragEvent (int x, int y, int theState)

View File

@ -481,6 +481,7 @@ namespace IE_WPF_WinForms
public void Delete()
{
View.EraseObjects();
SelectionChanged();
}
public void OnKeyDown( System.Windows.Input.Key theKey )

View File

@ -638,6 +638,8 @@ namespace IE_WinForms
public void DeleteObjects()
{
myOCCTProxy.EraseObjects();
IE_WinForms.Form1 parent = (IE_WinForms.Form1)this.ParentForm;
parent.SelectionChanged();
}
public void ImportModel(IE_WinForms.ModelFormat format)
{

View File

@ -236,5 +236,6 @@ void DocumentCommon::onDelete()
{
myContext->EraseSelected (Standard_False);
myContext->ClearSelected();
myContext->UpdateCurrentViewer();
getApplication()->onSelectionChanged();
}