From 7296be4ddef58ce9ac429ae455d7b8455d15a480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Mon, 14 Sep 2015 09:50:26 +0200 Subject: [PATCH] Tempoarily hide the SyncVisibleCells options for pushing to dev --- ApplicationCode/ProjectDataModel/RimViewLink.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ApplicationCode/ProjectDataModel/RimViewLink.cpp b/ApplicationCode/ProjectDataModel/RimViewLink.cpp index 4e15fd14e0..c6dfac4009 100644 --- a/ApplicationCode/ProjectDataModel/RimViewLink.cpp +++ b/ApplicationCode/ProjectDataModel/RimViewLink.cpp @@ -55,7 +55,9 @@ RimViewLink::RimViewLink(void) CAF_PDM_InitField(&syncTimeStep, "SyncTimeStep", true, "Time Step", "", "", ""); CAF_PDM_InitField(&syncCellResult, "SyncCellResult", false, "Cell Result", "", "", ""); - CAF_PDM_InitField(&syncVisibleCells, "SyncVisibleCells", true, "Visible Cells", "", "", ""); + CAF_PDM_InitField(&syncVisibleCells, "SyncVisibleCells", false, "Visible Cells", "", "", ""); + syncVisibleCells.uiCapability()->setUiHidden(true); // For now + CAF_PDM_InitField(&syncRangeFilters, "SyncRangeFilters", true, "Range Filters", "", "", ""); CAF_PDM_InitField(&syncPropertyFilters, "SyncPropertyFilters", true,"Property Filters", "", "", ""); }