This commit is contained in:
Ralf Wisser
2020-06-03 12:32:06 +02:00
parent d1f12a8365
commit 3a2ed9c85a
3 changed files with 12 additions and 4 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
9.4.1
9.4.2
- Improved database metadata management.
- Increased initial responsiveness of the Data Browser.
9.4
9.4.1
- The new "Degree view" allows quick and easy editing of the associations of tables with the highest connectivity.
9.3.6
@@ -25,7 +25,7 @@ public class JailerVersion {
/**
* The Jailer version.
*/
public static final String VERSION = "9.4.1.2";
public static final String VERSION = "9.4.2";
/**
* The Jailer working tables version.
@@ -4584,7 +4584,15 @@ public abstract class BrowserContentPane extends javax.swing.JPanel {
}
selectDistinctCheckBox.setVisible(nndr > 0);
selectDistinctCheckBox.setText("select distinct (-" + nndr + ")");
if (getParentBrowser() != null) {
BrowserContentPane pBrowser = getParentBrowser().browserContentPane;
if (pBrowser.selectDistinctCheckBox.isVisible() && !pBrowser.selectDistinctCheckBox.isSelected()) {
if (selectDistinctCheckBox.isSelected()) {
selectDistinctCheckBox.setVisible(false);
}
}
}
if (filterHeader != null) {
if (rowsTable.getRowSorter() != null && rowsTable.getRowSorter().getViewRowCount() == 0) {
filterHeader.setTable(null);