-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show more than one group color bar #5356
Conversation
Shows multiple colored bars if the entry belongs to more than one group (with color). Implements #4574.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just a small suggestion...
|
||
if (!groupColors.isEmpty()) { | ||
HBox container = new HBox(); | ||
container.setSpacing(2); | ||
container.setMinWidth(10); | ||
container.setAlignment(Pos.CENTER); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to set it to left align? Looks better imho 😀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would still say left aligned... But that's just my personal opinion 😁
+1 for left-aligned. If one does not know the feature, this looks better to me. Anything else left? |
ok, left aligned it is. Ready to merge from my POV. |
Shows multiple colored bars if the entry belongs to more than one group (with color). Implements #4574.