This commit is contained in:
RedSparr0w
2019-10-21 12:01:11 +13:00
parent 9729431b25
commit 780b5e963c
2 changed files with 7 additions and 5 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="3ab8e8a0-ccfd-4b0b-9547-98173085dc38" name="Default Changelist" comment="" />
<list default="true" id="3ab8e8a0-ccfd-4b0b-9547-98173085dc38" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/src/main/java/ParaScript/ui/UI.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/ParaScript/ui/UI.java" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
+4 -4
View File
@@ -293,11 +293,11 @@ public class UI extends JFrame {
}
}
if (Variables.fighting_npc_selected == FightingNpcs.CUSTOM) {
lblThievingNpcCustomID.setVisible(true);
thievingNpcCustomID.setVisible(true);
lblFightingNpcCustomID.setVisible(true);
fightingNpcCustomID.setVisible(true);
} else {
lblThievingNpcCustomID.setVisible(false);
thievingNpcCustomID.setVisible(false);
lblFightingNpcCustomID.setVisible(false);
fightingNpcCustomID.setVisible(false);
}
UI.this.revalidate();
UI.this.repaint();