Skip to content

Commit

Permalink
Clean Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
goldbattle committed Apr 1, 2013
1 parent a8134a5 commit b91be5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/soartex/texture_patcher/Texture_Patcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public final class Texture_Patcher implements Runnable {

// Program variables.

protected final static float VERSION = 1.1F;
protected final static float VERSION = 1.2F;
protected static boolean debug = false;

protected final Preferences prefsnode = Preferences.userNodeForPackage(getClass());
Expand Down Expand Up @@ -267,7 +267,7 @@ else if (!debug) {
for(int i = 0; i < branchUrl.size(); i++){
possibleValues[i] = branchUrl.get(i)[0];
}
String selectedValue = (String) JOptionPane.showInputDialog(null, "Mod Branch", "Branch", JOptionPane.INFORMATION_MESSAGE, null, possibleValues, possibleValues[possibleValues.length-1]);
String selectedValue = (String) JOptionPane.showInputDialog(null, "Please Select a Mod Branch", "Select A Branch", JOptionPane.PLAIN_MESSAGE, null, possibleValues, possibleValues[possibleValues.length-1]);

// If cancel or exit is pressed the return value is null. Therefor exit the program
if(selectedValue==null){
Expand Down

0 comments on commit b91be5c

Please sign in to comment.