ide; find in files dialog; fixed not modal like Find. Let parent be the desktop.
authorRejean Loyer <rejean.loyer@gmail.com>
Sun, 10 Mar 2013 08:04:40 +0000 (04:04 -0400)
committerJerome St-Louis <jerome@ecere.com>
Sun, 10 Mar 2013 08:04:40 +0000 (04:04 -0400)
ide/src/dialogs/FindInFilesDialog.ec
ide/src/ide.ec

index 1cd8b09..a30da2e 100644 (file)
@@ -166,7 +166,7 @@ public:
    void Show()
    {
       if(!created)
-         Create();
+         Modal();
       else
          Activate();
    }
index 790e885..7b3c120 100644 (file)
@@ -1390,7 +1390,7 @@ class IDEWorkSpace : Window
 
    FindInFilesDialog findInFilesDialog
    {
-      master = this, parent = this;
+      master = this,
       filters = findInFilesFileFilters.array, sizeFilters = findInFilesFileFilters.count * sizeof(FileFilter);
       filter = 1;
    };