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:
parent
f4264b5adb
commit
4d6554d142
@ -402,6 +402,7 @@ namespace IE_WPF_D3D
|
||||
public void Delete ()
|
||||
{
|
||||
View.EraseObjects ();
|
||||
SelectionChanged ();
|
||||
}
|
||||
|
||||
protected void MultiDragEvent (int x, int y, int theState)
|
||||
|
@ -481,6 +481,7 @@ namespace IE_WPF_WinForms
|
||||
public void Delete()
|
||||
{
|
||||
View.EraseObjects();
|
||||
SelectionChanged();
|
||||
}
|
||||
|
||||
public void OnKeyDown( System.Windows.Input.Key theKey )
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -236,5 +236,6 @@ void DocumentCommon::onDelete()
|
||||
{
|
||||
myContext->EraseSelected (Standard_False);
|
||||
myContext->ClearSelected();
|
||||
myContext->UpdateCurrentViewer();
|
||||
getApplication()->onSelectionChanged();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user