Merge pull request #2511 from Owain94/chatboxinput

chatboxinput: Plugin should be able to use this
This commit is contained in:
Owain van Brakel
2020-04-19 15:33:38 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -27,13 +27,13 @@ package net.runelite.client.game.chatbox;
/**
* A modal input that lives in the chatbox panel.
*/
abstract class ChatboxInput
public abstract class ChatboxInput
{
void open()
protected void open()
{
}
void close()
protected void close()
{
}
}

View File

@@ -573,7 +573,7 @@ public class ChatboxTextInput extends ChatboxInput implements KeyListener, Mouse
}
@Override
void close()
protected void close()
{
if (this.onClose != null)
{