mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-24 11:39:31 -05:00
convertChildrenToRoots if single table is closed
This commit is contained in:
+1
-1
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user