diff options
author | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:00:47 +0000 |
---|---|---|
committer | tkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7> | 2013-04-10 19:00:47 +0000 |
commit | 69a324224b1fa13f3394a56cda088bc8da15655a (patch) | |
tree | 6b7c96fb7d17c078dfb92d77a3bb5d4d68eaa90f /pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls | |
parent | 6fa172c8ff9a4c3e500f3c32c7f3ff4b776d4601 (diff) | |
download | pdf-over-69a324224b1fa13f3394a56cda088bc8da15655a.tar.gz pdf-over-69a324224b1fa13f3394a56cda088bc8da15655a.tar.bz2 pdf-over-69a324224b1fa13f3394a56cda088bc8da15655a.zip |
+ Color changed for drop border,
+ removed pack in BKUSelectionComposite
+ using default background color as mainbar border color
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@81 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls')
-rw-r--r-- | pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarButton.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarButton.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarButton.java index a3e95e23..32b44a78 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarButton.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarButton.java @@ -85,7 +85,8 @@ public abstract class MainBarButton extends Canvas { this.activeBackground = new Color(getDisplay(),0xB4, 0xCD, 0xEC); //this.textColor = this.getForeground(); this.textColor = new Color(getDisplay(), 0x00, 0x00, 0x00); - this.borderColor = new Color(getDisplay(), 0xf9, 0xf9, 0xf9); + //this.borderColor = new Color(getDisplay(), 0xf9, 0xf9, 0xf9); + this.borderColor = this.getBackground(); this.inactiveText = new Color(getDisplay(), 0x40, 0x40, 0x40); this.textsize = StateComposite.TEXT_SIZE_BUTTON; |