aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuz <6596629+Juuxel@users.noreply.github.com>2022-12-11 13:51:57 +0200
committerJuuz <6596629+Juuxel@users.noreply.github.com>2022-12-11 13:51:57 +0200
commit5d6f7203ed0836c2969c3a2001aec3e9860bd8ad (patch)
treed6258a643519adae8dc7c73f33cb4cf3e2761b78
parentd76d6d4c9eebabc734dbd71f2838c782e8226c68 (diff)
downloadLibGui-5d6f7203ed0836c2969c3a2001aec3e9860bd8ad.tar.gz
LibGui-5d6f7203ed0836c2969c3a2001aec3e9860bd8ad.tar.bz2
LibGui-5d6f7203ed0836c2969c3a2001aec3e9860bd8ad.zip
Add missing since tags in javadoc
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WGridPanel.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WGridPanel.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WGridPanel.java
index 22139e9..a2f0921 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WGridPanel.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WGridPanel.java
@@ -17,11 +17,13 @@ public class WGridPanel extends WPanelWithInsets {
/**
* The horizontal gap between two grid cells.
+ * @since 6.4.0
*/
protected int horizontalGap = 0;
/**
* The vertical gap between two grid cells.
+ * @since 6.4.0
*/
protected int verticalGap = 0;
@@ -45,6 +47,7 @@ public class WGridPanel extends WPanelWithInsets {
*
* @param horizontalGap the horizontal gap between grid cells
* @param verticalGap the vertical gap between grid cells
+ * @since 6.4.0
*/
public WGridPanel setGaps(int horizontalGap, int verticalGap) {
if (!this.children.isEmpty()) {