]> Creatis software - creaMaracasVisu.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 17 Jan 2025 15:13:26 +0000 (16:13 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 17 Jan 2025 15:13:26 +0000 (16:13 +0100)
lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkBaseView.cxx

index 3bdaa1302827e0e86eed538edf900951d84f0222..d821b6a03aa43b74d65cc396f3f8df49e86b4d54 100644 (file)
@@ -85,21 +85,20 @@ void wxVtkBaseView::Configure()  // virtual
 void wxVtkBaseView::Refresh()  // virtual
 {
     printf("EED wxVtkBaseView::Refresh \n");
-    
-    if (firstTimeOnPaint==true)
+
+    vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
+
+    if (GetWxVTKRenderWindowInteractor()->firstTimeOnPaint==true)
     {
         
         // EED 10 Oct 2007
 #if defined(WIN32)
         _iren->Refresh(true);
         // EED 27 sept 2016
-        vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
         vri->vtkRenderWindowInteractor::Render();
 #else
         //EED 01Avril2009
         //             _iren->Render();
-        vtkRenderWindowInteractor *vri = GetWxVTKRenderWindowInteractor();
-        
         //auto start1 = std::chrono::high_resolution_clock::now();
         
         vri->vtkRenderWindowInteractor::Render();
@@ -116,7 +115,7 @@ void wxVtkBaseView::Refresh()  // virtual
 //-------------------------------------------------------------------
 void wxVtkBaseView::RefreshView()  // virtual 
 {
-    if (firstTimeOnPaint==true)
+    if (GetWxVTKRenderWindowInteractor()->firstTimeOnPaint==true)
     {
         printf("EED wxVtkBaseView::RefreshView \n");
         // EED 10 Oct 2007