Skip to content

Commit

Permalink
Make filter dialog resizeable
Browse files Browse the repository at this point in the history
VN-2645
  • Loading branch information
Agh42 committed Mar 20, 2020
1 parent 2e85f27 commit fa40fb5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public class BaseProtectionFilterDialog extends Dialog {
public BaseProtectionFilterDialog(Shell parentShell,
@NonNull BaseProtectionFilterParameters filterParameters,
@NonNull BaseProtectionFilterParameters defaultFilterParams) {

super(parentShell);
this.filterParameters = filterParameters;
this.defaultFilterParams = defaultFilterParams;
Expand All @@ -121,6 +122,11 @@ protected void configureShell(Shell shell) {
super.configureShell(shell);
shell.setText(Messages.BaseProtectionFilterDialog_Title);
}

@Override
protected boolean isResizable() {
return true;
}

/**
* Create contents of the dialog.
Expand Down

0 comments on commit fa40fb5

Please sign in to comment.