Quick Select Support for the GroupCreationTab #77

Merged
mpk merged 9 commits from f/quick-group-select into develop 2020-10-04 21:28:57 +02:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 5f0910635a - Show all commits

View File

@ -20,6 +20,7 @@ public class QuickSelectControl extends VBox {
public QuickSelectControl(User user, GroupCreationTab tab) {
mpk marked this conversation as resolved Outdated
Outdated
Review

Please make this private.

Please make this `private`.
this.user = user;
setPadding(new Insets(1, 0, 0, 0));
setPrefWidth(37);
mpk marked this conversation as resolved Outdated
Outdated
Review

As I've already been conditioned by a certain member of the Envoy team (the coffee machine guy) to not use @link in constructors for the own component, I've since swapped to using @code, so maybe you should too.

It might be beneficial to create a convention for such cases from here on.

As I've already been conditioned by a certain member of the Envoy team (the coffee machine guy) to not use `@link` in constructors for the own component, I've since swapped to using `@code`, so maybe you should too. It might be beneficial to create a convention for such cases from here on.
setMaxWidth(37);
setMinWidth(37);