From 3287fb2053111d1a808aa28d1b1049555bb7be5f Mon Sep 17 00:00:00 2001 From: rnv Date: Mon, 16 May 2011 14:06:17 +0000 Subject: [PATCH] Fix for the bug "IPAL22452 TC6.3.0: Save button is not activated after renaming GUI state". --- src/SalomeApp/SalomeApp_Application.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SalomeApp/SalomeApp_Application.cxx b/src/SalomeApp/SalomeApp_Application.cxx index 4f9c611ae..be0d219fe 100644 --- a/src/SalomeApp/SalomeApp_Application.cxx +++ b/src/SalomeApp/SalomeApp_Application.cxx @@ -1840,6 +1840,9 @@ bool SalomeApp_Application::renameObject( const QString& entry, const QString& n if ( !name.isNull() && !name.isEmpty() ) { aStudy->setNameOfSavePoint( savePoint, name ); updateSavePointDataObjects( aStudy ); + + //Mark study as modified + aStudy->Modified(); return true; } return false; -- 2.39.2