ecere/gui/FileDialog: Reordered if condition to avoid UMR
authorJerome St-Louis <jerome@ecere.com>
Mon, 19 Nov 2012 12:11:18 +0000 (07:11 -0500)
committerJerome St-Louis <jerome@ecere.com>
Mon, 19 Nov 2012 12:11:18 +0000 (07:11 -0500)
ecere/src/gui/dialogs/FileDialog.ec

index ea7bcd8..cc0ce81 100644 (file)
@@ -1093,7 +1093,7 @@ private:
          }
       }
 
-      if(!exists && result && from == fromDropBox) // drive Drop Box
+      if(result && !exists && from == fromDropBox) // drive Drop Box
       {
          ListDrives();
       }