mirror of
https://github.com/Wisser/Jailer.git
synced 2026-01-06 09:09:32 -06:00
Improved display of column values
This commit is contained in:
@@ -1716,7 +1716,7 @@ public abstract class BrowserContentPane extends javax.swing.JPanel implements P
|
||||
Colors.Color_0_0_0);
|
||||
boolean isNull = false;
|
||||
if (((JLabel) render).getText() == UIUtil.NULL || ((JLabel) render).getText() == UNKNOWN) {
|
||||
((JLabel) render).setForeground(Colors.Color_128_128_128);
|
||||
((JLabel) render).setForeground(Colors.Color_153_153_153);
|
||||
((JLabel) render).setText(" null ");
|
||||
((JLabel) render).setFont(italic);
|
||||
isNull = true;
|
||||
|
||||
@@ -345,7 +345,7 @@ public class TableDetailsView extends javax.swing.JPanel {
|
||||
}
|
||||
};
|
||||
Object obj = columnValue.get(column);
|
||||
label.setForeground(obj == null? Colors.Color_128_128_128 : Colors.Color_0_0_0);
|
||||
label.setForeground(obj == null? Colors.Color_153_153_153 : Colors.Color_0_0_0);
|
||||
if (obj == null) {
|
||||
label.setFont(italic);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user