Skip to content

Commit

Permalink
set maximum and preferred size to same value
Browse files Browse the repository at this point in the history
  • Loading branch information
iradraconis committed Aug 7, 2024
1 parent bb8778a commit f09622b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
<Properties>
<Property name="toolTipText" type="java.lang.String" value="Zusammenfassung"/>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[275, 25]"/>
<Dimension value="[272, 25]"/>
</Property>
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[272, 25]"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
jLabel23.setText("Grund / Beschreibung:");

txtReviewReason.setToolTipText("Zusammenfassung");
txtReviewReason.setMaximumSize(new java.awt.Dimension(275, 25));
txtReviewReason.setMaximumSize(new java.awt.Dimension(272, 25));
txtReviewReason.setPreferredSize(new java.awt.Dimension(272, 25));

taEventDescription.setColumns(20);
Expand Down

0 comments on commit f09622b

Please sign in to comment.