GUI: fixed booster tooltip in deck editor;

This commit is contained in:
Oleg Agafonov 2021-02-08 19:38:57 +04:00
parent 10306787e2
commit ea577e2070
2 changed files with 2 additions and 2 deletions

View file

@ -239,7 +239,7 @@
<Component class="javax.swing.JButton" name="btnBooster">
<Properties>
<Property name="text" type="java.lang.String" value="Open Booster"/>
<Property name="toolTipText" type="java.lang.String" value="(CURRENTLY NOT WORKING) Generates a booster of the selected set and adds the cards to the card selector."/>
<Property name="toolTipText" type="java.lang.String" value="Generates a booster of the selected set and adds the cards to the card selector."/>
<Property name="focusable" type="boolean" value="false"/>
<Property name="horizontalTextPosition" type="int" value="0"/>
<Property name="verticalTextPosition" type="int" value="3"/>

View file

@ -687,7 +687,7 @@ public class CardSelector extends javax.swing.JPanel implements ComponentListene
tbColor.add(chkPennyDreadful);
btnBooster.setText("Open Booster");
btnBooster.setToolTipText("(CURRENTLY NOT WORKING) Generates a booster of the selected set and adds the cards to the card selector.");
btnBooster.setToolTipText("Generates a booster of the selected set and adds the cards to the card selector.");
btnBooster.setFocusable(false);
btnBooster.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
btnBooster.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);