convertChildrenToRoots if single table is closed

This commit is contained in:
Wisser
2018-09-05 14:41:09 +02:00
parent 20da29b810
commit 253032ba92
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
7.11
7.11.1
- Database analysis not only finds primary keys and foreign keys for tables,
but also for views and synonyms by analyzing the underlying tables.
- Fixed a memory leak in data browser.
@@ -25,7 +25,7 @@ public class JailerVersion {
/**
* The Jailer version.
*/
public static final String VERSION = "7.11";
public static final String VERSION = "7.11.1";
/**
* The Jailer working tables version.
@@ -2567,7 +2567,7 @@ public abstract class Desktop extends JDesktopPane {
public void closeAll(Collection<RowBrowser> toClose) {
for (RowBrowser rb : toClose) {
close(rb, false);
close(rb, toClose.size() == 1);
// getDesktopManager().closeFrame(rb.internalFrame);
rb.internalFrame.dispose();
}