From 1246772b960c4c58fed016117fdd7614d817ccf1 Mon Sep 17 00:00:00 2001 From: Alan Kelly Date: Fri, 13 Feb 2009 20:20:37 +0000 Subject: [PATCH] Minor improvements to display of plugin JPanels on the MainFrame --- .../java/sip/communicator/impl/gui/main/MainFrame.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/net/java/sip/communicator/impl/gui/main/MainFrame.java b/src/net/java/sip/communicator/impl/gui/main/MainFrame.java index c7f04e2d8..37e9d0a54 100755 --- a/src/net/java/sip/communicator/impl/gui/main/MainFrame.java +++ b/src/net/java/sip/communicator/impl/gui/main/MainFrame.java @@ -87,10 +87,10 @@ public class MainFrame private final Map nativePluginsTable = new Hashtable(); - private final JPanel pluginPanelNorth = new JPanel(); - private final JPanel pluginPanelSouth = new JPanel(); - private final JPanel pluginPanelWest = new JPanel(); - private final JPanel pluginPanelEast = new JPanel(); + private final JPanel pluginPanelNorth = new TransparentPanel(); + private final JPanel pluginPanelSouth = new TransparentPanel(); + private final JPanel pluginPanelWest = new TransparentPanel(); + private final JPanel pluginPanelEast = new TransparentPanel(); private ContactListPane contactListPanel; @@ -1374,6 +1374,7 @@ else if (container.equals(Container.CONTAINER_STATUS_BAR)) } this.getContentPane().repaint(); + this.getContentPane().validate(); } /**