Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class EncryptPanel extends OperationPanel<JWE, JWS> {
private JComboBox<Key> comboBoxEncryptionKey;

public EncryptPanel(List<Key> encryptionKeys) {
super("encrypt_dialog_title", new Dimension(600, 325));
super("encrypt_dialog_title", new Dimension(650, 325));

// Convert encryptionKeys List to Array
Key[] encryptionKeysArray = new Key[encryptionKeys.size()];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class KeyConfusionAttackPanel extends OperationPanel<JWS, JWS> {
private JCheckBox checkBoxTrailingNewline;

public KeyConfusionAttackPanel(List<Key> signingKeys, LastSigningKeys lastSigningKeys) {
super("key_confusion_attack_dialog_title", new Dimension(575, 275));
super("key_confusion_attack_dialog_title", new Dimension(650, 350));

this.lastSigningKeys = lastSigningKeys;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
abstract class OperationPanel<T, U> extends JPanel implements Operation<T, U> {
protected static final String VALIDITY_EVENT = "validityEvent";

private static final Dimension DEFAULT_DIMENSION = new Dimension(324, 184);
private static final Dimension DEFAULT_DIMENSION = new Dimension(524, 184);

private final Dimension dimension;
private final String titleResourceId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public enum Mode {

Dimension dimension() {
return switch (this) {
case NORMAL -> new Dimension(500, 375);
case EMBED_JWK -> new Dimension(500, 250);
case NORMAL -> new Dimension(600, 375);
case EMBED_JWK -> new Dimension(600, 250);
};
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<grid id="cbd77" binding="contentPane" layout-manager="GridLayoutManager" row-count="2" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
<margin top="10" left="10" bottom="10" right="10"/>
<constraints>
<xy x="48" y="54" width="524" height="224"/>
<xy x="48" y="54" width="600" height="300"/>
</constraints>
<properties/>
<border type="none"/>
Expand Down