Skip to content

Commit

Permalink
improved color scheme of the links
Browse files Browse the repository at this point in the history
  • Loading branch information
Wisser committed Oct 21, 2024
1 parent 31d5b1c commit fc3db6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/gui/net/sf/jailer/ui/databrowser/Desktop.java
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ public int compare(Link a, Link b) {
boolean sameY = tableBrowser.parent != null && Math.abs(tableBrowser.internalFrame.getY() - tableBrowser.parent.internalFrame.getY()) < 32;
int linkPrio = 0;
if (link.notHAligned) {
if (link.inClosure) {
if (link.inClosure || sameY) {
linkPrio += 1;
}
} else {
Expand Down

0 comments on commit fc3db6b

Please sign in to comment.