From 62555eb0c04e7cb4f3b4fcf0a8088b926e5680af Mon Sep 17 00:00:00 2001 From: mzn Date: Tue, 23 Dec 2008 11:34:54 +0000 Subject: [PATCH] Fix for bug IPAL20758 (5.x: Prefences dialog box: duplicated "Study properties" group box). --- src/SUIT/SUIT_PreferenceMgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUIT/SUIT_PreferenceMgr.cxx b/src/SUIT/SUIT_PreferenceMgr.cxx index 555e152b2..512fdafa0 100644 --- a/src/SUIT/SUIT_PreferenceMgr.cxx +++ b/src/SUIT/SUIT_PreferenceMgr.cxx @@ -79,7 +79,7 @@ int SUIT_PreferenceMgr::addItem( const QString& title, const int pId, QtxPreferenceItem* item = parent->findItem( title, true ); - if ( item && item->depth() < 4 ) + if ( item && item->depth() < 5 ) return item->id(); if ( pId == -1 ) -- 2.39.2