]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Correction.
authormzn <mzn@opencascade.com>
Thu, 9 Jun 2005 09:13:01 +0000 (09:13 +0000)
committermzn <mzn@opencascade.com>
Thu, 9 Jun 2005 09:13:01 +0000 (09:13 +0000)
src/SUIT/SUIT_FileDlg.cxx

index d536079c99541bdf3765e394a6cd10f8d96f062c..ed53aad9549a0ded570bc13d8e4ccffcb5ca9d85 100755 (executable)
@@ -117,14 +117,18 @@ myOpen( open )
   }
   setMode( myOpen ? ExistingFile : AnyFile );     
   setCaption( myOpen ? tr( "INF_DESK_DOC_OPEN" ) : tr( "INF_DESK_DOC_SAVE" ) );
-  if (myLastVisitedPath.isNull() || myLastVisitedPath.isEmpty()) {
-    // If no last visited path exists -> switch to the first preferred path
-    processPath(myQuickCombo->text(0));
-  } 
-  else if ( !processPath(myLastVisitedPath) ) {
-    // If last visited path doesn't exist -> switch to the first preferred path
-    processPath(myQuickCombo->text(0));
+
+  if (showQuickDir) {
+    if (myLastVisitedPath.isNull() || myLastVisitedPath.isEmpty()) {
+      // If no last visited path exists -> switch to the first preferred path
+      processPath(myQuickCombo->text(0));
+    } 
+    else if ( !processPath(myLastVisitedPath) ) {
+      // If last visited path doesn't exist -> switch to the first preferred path
+      processPath(myQuickCombo->text(0));
+    }
   }
+
   myValidator = new SUIT_FileValidator(this);
   
 }