Updated NetLogClient to disable all UI elements when disconnected

This commit is contained in:
Ziver Koc 2013-05-28 09:03:01 +00:00
parent bfcab133de
commit b298aadd68
7 changed files with 35 additions and 27 deletions

View file

@ -76,9 +76,9 @@ public class Tick {
*/
public static char increment(char c){
switch(Character.toLowerCase(c)){
case 'z': return 'å';
case 'å': return 'ä';
case 'ä': return 'ö';
case 'z': return 'å';
case 'å': return 'ä';
case 'ä': return 'ö';
}
c = (char)(Character.toLowerCase(c) + 1);
if(isAlfa(c)){
@ -122,9 +122,9 @@ public class Tick {
case 'x':
case 'y':
case 'z':
case 'å':
case 'ä':
case 'ö': return true;
case 'å':
case 'ä':
case 'ö': return true;
default: return false;
}
}