Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2016-07-11 13:50:06 +0000
committerEric Williams2016-07-11 13:50:06 +0000
commit0bfb79aee530fd11d23ecd169622863caf2d4b65 (patch)
tree064448b24e6a690ad54d49412c21a597737b8e17 /bundles
parent11b1b277266859775b4b4ea02e9f9f2018ee08a8 (diff)
downloadeclipse.platform.swt-0bfb79aee530fd11d23ecd169622863caf2d4b65.tar.gz
eclipse.platform.swt-0bfb79aee530fd11d23ecd169622863caf2d4b65.tar.xz
eclipse.platform.swt-0bfb79aee530fd11d23ecd169622863caf2d4b65.zip
Bug 497635: Revert fix for Bug 484463
This reverts a fix for Toolbars on GTK3 to allow the line under the Quick Access entry to be visible. As the line is now being removed from Platform UI this fix can be reverted. Testing in progress. Change-Id: I2d1ec4173ebd890dd43090cadfb01b6dfb4e71b5 Signed-off-by: Eric Williams <ericwill@redhat.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java
index 33ed618ff4..c0cd834934 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java
@@ -709,7 +709,7 @@ protected void init () {
if (OS.GTK_VERSION < OS.VERSION(3, 20, 0)) {
css =
"GtkToolbar {padding-top: 4px; padding-bottom: 4px;}\n"
- + "GtkToolbar GtkButton {padding: 4px 4px 4px 4px;}\n"
+ + "GtkToolbar GtkButton {padding: 2px 4px 3px 4px;}\n"
+ ".undershoot.top, .undershoot.right, .undershoot.bottom, .undershoot.left {background-image: none;}\n"
+ "GtkToolbar GtkMenuButton {padding: 1px 0px 1px 0px;}\n";
} else {

Back to the top