From d924d5e0a98fc2017137ea3121c0bae58b107819 Mon Sep 17 00:00:00 2001 From: Owain van Brakel Date: Fri, 17 Jan 2020 02:32:39 +0100 Subject: [PATCH] profiles: redraw after adding an account (#2260) --- .../net/runelite/client/plugins/profiles/ProfilesPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/profiles/ProfilesPanel.java b/runelite-client/src/main/java/net/runelite/client/plugins/profiles/ProfilesPanel.java index 970cd2b7b4..a5de549873 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/profiles/ProfilesPanel.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/profiles/ProfilesPanel.java @@ -295,14 +295,14 @@ class ProfilesPanel extends PluginPanel { return; } + + redrawProfiles(); } catch (InvalidKeySpecException | NoSuchAlgorithmException | IllegalBlockSizeException | InvalidKeyException | BadPaddingException | NoSuchPaddingException ex) { log.error(e.toString()); } - this.addAccount(data); - txtAccountLabel.setText(ACCOUNT_LABEL); txtAccountLogin.setText(ACCOUNT_USERNAME);