diff options
author | Alan Kelly <akelly7@java.net> | 2009-03-06 21:08:01 +0000 |
---|---|---|
committer | Alan Kelly <akelly7@java.net> | 2009-03-06 21:08:01 +0000 |
commit | c0fe7cae95e52e414139901f2d75baea97ff9af7 (patch) | |
tree | 33a3d5396843c2fe3410ae07451d3d8d7df463a0 /src/net/java/sip/communicator/plugin/aimaccregwizz | |
parent | 29c4df9e9cf4513cf09017bbc23b88331c43834d (diff) | |
download | jitsi-c0fe7cae95e52e414139901f2d75baea97ff9af7.zip jitsi-c0fe7cae95e52e414139901f2d75baea97ff9af7.tar.gz jitsi-c0fe7cae95e52e414139901f2d75baea97ff9af7.tar.bz2 |
GUI enhancements: Remove opacity and editability from JTextAreas used for instructions
Diffstat (limited to 'src/net/java/sip/communicator/plugin/aimaccregwizz')
-rw-r--r-- | src/net/java/sip/communicator/plugin/aimaccregwizz/FirstWizardPage.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/aimaccregwizz/FirstWizardPage.java b/src/net/java/sip/communicator/plugin/aimaccregwizz/FirstWizardPage.java index 05b9f4b..c198606 100644 --- a/src/net/java/sip/communicator/plugin/aimaccregwizz/FirstWizardPage.java +++ b/src/net/java/sip/communicator/plugin/aimaccregwizz/FirstWizardPage.java @@ -204,6 +204,7 @@ public class FirstWizardPage this.registerArea.setEditable(false); this.registerArea.setLineWrap(true); this.registerArea.setWrapStyleWord(true); + this.registerArea.setOpaque(false); this.registerPanel.add(registerArea); this.registerPanel.add(buttonPanel); |