From 65584c3c6cbda67ab1003c764f2570b4bf0d967e Mon Sep 17 00:00:00 2001 From: rkv Date: Fri, 27 Dec 2013 08:38:18 +0000 Subject: [PATCH] Fix for the bug #293: Shown bathymetry doesn't disappear after Undo. --- src/HYDROGUI/HYDROGUI_UpdateFlags.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/HYDROGUI/HYDROGUI_UpdateFlags.h b/src/HYDROGUI/HYDROGUI_UpdateFlags.h index c7831fbe..e5e18321 100644 --- a/src/HYDROGUI/HYDROGUI_UpdateFlags.h +++ b/src/HYDROGUI/HYDROGUI_UpdateFlags.h @@ -42,13 +42,14 @@ typedef enum UF_OCC_Init = 0x00000100, //!< initial update (used with UF_OCCViewer) UF_OCC_Forced = 0x00000200, //!< to force recomputing all presentations (used with UF_OCCViewer) - UF_VTKViewer = 0x00000800, //!< OCC viewer - UF_VTK_Init = 0x00001000, //!< initial update (used with UF_OCCViewer) - UF_VTK_Forced = 0x00002000, //!< to force recomputing all presentations (used with UF_OCCViewer) + UF_VTKViewer = 0x00000800, //!< VTK viewer + UF_VTK_Init = 0x00001000, //!< initial update (used with UF_VTKViewer) + UF_VTK_Forced = 0x00002000, //!< to force recomputing all presentations (used with UF_VTKViewer) UF_FitAll = 0x00000400, //!< to do fit all (used with UF_Viewer or UF_OCCViewer) - UF_All = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced//!< all update flags + UF_All = UF_Base | UF_GV_Init | UF_GV_Forced | UF_OCCViewer | UF_OCC_Init | UF_OCC_Forced | + UF_VTKViewer | UF_VTK_Init | UF_VTK_Forced//!< all update flags } HYDRO_UpdateFlags; #endif -- 2.39.2