Fix issue with messages not displaying in regular (non-Overlay) mode.
This commit is contained in:
parent
b39c2cf980
commit
15efa2f45a
BIN
sigIRCv2.jar
BIN
sigIRCv2.jar
Binary file not shown.
@ -72,15 +72,18 @@ public class MyPanel extends JPanel implements MouseListener, ActionListener, Mo
|
||||
}*/
|
||||
//
|
||||
for (int i=0;i<sigIRC.textobj.size();i++) {
|
||||
if (sigIRC.textobj.get(i).isActive() && sigIRC.overlayMode) {
|
||||
if (!sigIRC.textobj.get(i).intersects(lastMouseX,lastMouseY)) {
|
||||
sigIRC.textobj.get(i).setVisible(true);
|
||||
sigIRC.textobj.get(i).draw(g);
|
||||
if (sigIRC.textobj.get(i).isActive()) {
|
||||
if (sigIRC.overlayMode) {
|
||||
if (!sigIRC.textobj.get(i).intersects(lastMouseX,lastMouseY)) {
|
||||
sigIRC.textobj.get(i).setVisible(true);
|
||||
sigIRC.textobj.get(i).draw(g);
|
||||
} else {
|
||||
System.out.println("Setting to False.");
|
||||
sigIRC.textobj.get(i).setVisible(false);
|
||||
}
|
||||
} else {
|
||||
sigIRC.textobj.get(i).setVisible(false);
|
||||
sigIRC.textobj.get(i).draw(g);
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
for (Module m : sigIRC.modules) {
|
||||
|
@ -157,7 +157,7 @@ public class ScrollingText {
|
||||
}
|
||||
|
||||
public void setVisible(boolean isVisible) {
|
||||
this.visible=visible;
|
||||
this.visible=isVisible;
|
||||
}
|
||||
|
||||
public void draw(Graphics g) {
|
||||
|
@ -18,34 +18,36 @@ public class UpdateEvent implements ActionListener{
|
||||
}
|
||||
|
||||
private void UpdateAuthenticationCountdownMessage() {
|
||||
if (!sigIRC.authenticated && last_authentication_msg<MSGTIMER) {
|
||||
last_authentication_msg++;
|
||||
} else
|
||||
if (!sigIRC.authenticated && last_authentication_msg>=MSGTIMER) {
|
||||
last_authentication_msg=0;
|
||||
sigIRC.panel.addMessage("SYSTEM: Your oauthToken was not successful. Please go to the sigIRC folder and make sure your oauthToken.txt file is correct!!! SwiftRage");
|
||||
if (sigIRC.downloadsComplete) {
|
||||
if (!sigIRC.authenticated && last_authentication_msg<MSGTIMER) {
|
||||
last_authentication_msg++;
|
||||
} else
|
||||
if (!sigIRC.authenticated && last_authentication_msg>=MSGTIMER) {
|
||||
last_authentication_msg=0;
|
||||
sigIRC.panel.addMessage("SYSTEM: Your oauthToken was not successful. Please go to the sigIRC folder and make sure your oauthToken.txt file is correct!!! SwiftRage");
|
||||
}
|
||||
if (last_autosave<AUTOSAVETIMER) {
|
||||
last_authentication_msg++;
|
||||
} else
|
||||
if (last_autosave>=AUTOSAVETIMER) {
|
||||
last_autosave=0;
|
||||
sigIRC.windowX = sigIRC.window.getX();
|
||||
sigIRC.windowY = sigIRC.window.getY();
|
||||
sigIRC.windowWidth = sigIRC.window.getWidth();
|
||||
sigIRC.windowHeight = sigIRC.window.getHeight();
|
||||
sigIRC.config.setInteger("windowX", sigIRC.windowX);
|
||||
sigIRC.config.setInteger("windowY", sigIRC.windowY);
|
||||
sigIRC.config.setInteger("windowWidth", sigIRC.windowWidth);
|
||||
sigIRC.config.setInteger("windowHeight", sigIRC.windowHeight);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
if (sigIRC.lastPlayedDing>0) {
|
||||
sigIRC.lastPlayedDing--;
|
||||
}
|
||||
updateFPSCounter();
|
||||
sigIRC.window.setTitle("sigIRCv2 - "+(avgfps)+" FPS");
|
||||
lasttime=System.currentTimeMillis();
|
||||
}
|
||||
if (last_autosave<AUTOSAVETIMER) {
|
||||
last_authentication_msg++;
|
||||
} else
|
||||
if (last_autosave>=AUTOSAVETIMER) {
|
||||
last_autosave=0;
|
||||
sigIRC.windowX = sigIRC.window.getX();
|
||||
sigIRC.windowY = sigIRC.window.getY();
|
||||
sigIRC.windowWidth = sigIRC.window.getWidth();
|
||||
sigIRC.windowHeight = sigIRC.window.getHeight();
|
||||
sigIRC.config.setInteger("windowX", sigIRC.windowX);
|
||||
sigIRC.config.setInteger("windowY", sigIRC.windowY);
|
||||
sigIRC.config.setInteger("windowWidth", sigIRC.windowWidth);
|
||||
sigIRC.config.setInteger("windowHeight", sigIRC.windowHeight);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
if (sigIRC.lastPlayedDing>0) {
|
||||
sigIRC.lastPlayedDing--;
|
||||
}
|
||||
updateFPSCounter();
|
||||
sigIRC.window.setTitle("sigIRCv2 - "+(avgfps)+" FPS");
|
||||
lasttime=System.currentTimeMillis();
|
||||
}
|
||||
|
||||
public void updateFPSCounter() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user