diff options
| author | 2022-12-07 20:01:42 +0100 | |
|---|---|---|
| committer | 2022-12-07 19:01:42 +0000 | |
| commit | 6c40d066d239ed489bf408eac281f3602cd84e09 (patch) | |
| tree | fad8b1c57196650cedd101c073680e30cc0bc2b3 /enigma-swing | |
| parent | Allow pasting directly on renamable tokens (#478) (diff) | |
| download | enigma-fork-6c40d066d239ed489bf408eac281f3602cd84e09.tar.gz enigma-fork-6c40d066d239ed489bf408eac281f3602cd84e09.tar.xz enigma-fork-6c40d066d239ed489bf408eac281f3602cd84e09.zip | |
Add `@value` Javadoc tag (#477)
Co-authored-by: ByMartrixx <bymartrixx@gmail.com>
Diffstat (limited to 'enigma-swing')
| -rw-r--r-- | enigma-swing/src/main/java/cuchaz/enigma/gui/dialog/JavadocDialog.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/enigma-swing/src/main/java/cuchaz/enigma/gui/dialog/JavadocDialog.java b/enigma-swing/src/main/java/cuchaz/enigma/gui/dialog/JavadocDialog.java index d6e544d..f0cc38c 100644 --- a/enigma-swing/src/main/java/cuchaz/enigma/gui/dialog/JavadocDialog.java +++ b/enigma-swing/src/main/java/cuchaz/enigma/gui/dialog/JavadocDialog.java | |||
| @@ -150,7 +150,7 @@ public class JavadocDialog { | |||
| 150 | contentPane.add(tagsMenu, BorderLayout.NORTH); | 150 | contentPane.add(tagsMenu, BorderLayout.NORTH); |
| 151 | 151 | ||
| 152 | // show the frame | 152 | // show the frame |
| 153 | this.ui.setSize(ScaleUtil.getDimension(600, 400)); | 153 | this.ui.setSize(ScaleUtil.getDimension(630, 400)); |
| 154 | this.ui.setLocationRelativeTo(parent); | 154 | this.ui.setLocationRelativeTo(parent); |
| 155 | this.ui.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); | 155 | this.ui.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); |
| 156 | } | 156 | } |
| @@ -204,6 +204,7 @@ public class JavadocDialog { | |||
| 204 | CODE(true), | 204 | CODE(true), |
| 205 | LINK(true), | 205 | LINK(true), |
| 206 | LINKPLAIN(true), | 206 | LINKPLAIN(true), |
| 207 | VALUE(true), | ||
| 207 | RETURN(false), | 208 | RETURN(false), |
| 208 | SEE(false), | 209 | SEE(false), |
| 209 | THROWS(false); | 210 | THROWS(false); |