aboutsummaryrefslogtreecommitdiffstats
path: root/client/src
diff options
context:
space:
mode:
authorJonatan Kronqvist <jonatan@vaadin.com>2014-02-13 13:17:49 +0200
committerVaadin Code Review <review@vaadin.com>2014-02-13 11:26:15 +0000
commit23cab23936813909c1837b54b6d125ea1eaa61d4 (patch)
tree3db0857c68b4a94902c01cee42c91927597ce781 /client/src
parent6f5b334247e024143b82c1c9e0c84b41d9bd2abb (diff)
downloadvaadin-framework-23cab23936813909c1837b54b6d125ea1eaa61d4.tar.gz
vaadin-framework-23cab23936813909c1837b54b6d125ea1eaa61d4.zip
Add a custom icon for the TestBench debug tab (#12479)
Updates the font icon files to add the official TestBench icon Change-Id: I6f417aea761c5b2320c69d36f0616e1d746224a0
Diffstat (limited to 'client/src')
-rw-r--r--client/src/com/vaadin/client/debug/internal/Icon.java4
-rw-r--r--client/src/com/vaadin/client/debug/internal/TestBenchSection.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/debug/internal/Icon.java b/client/src/com/vaadin/client/debug/internal/Icon.java
index 9ef6d833e2..70bac11175 100644
--- a/client/src/com/vaadin/client/debug/internal/Icon.java
+++ b/client/src/com/vaadin/client/debug/internal/Icon.java
@@ -44,7 +44,9 @@ public enum Icon {
// BAN_CIRCLE("&#xf05e;"), //
MAXIMIZE("&#xf065;"), //
RESET("&#xf021;"), //
- PERSIST("&#xf02e"); //
+ PERSIST("&#xf02e"), //
+ TESTBENCH("&#xe600"), //
+ ;
private String id;
diff --git a/client/src/com/vaadin/client/debug/internal/TestBenchSection.java b/client/src/com/vaadin/client/debug/internal/TestBenchSection.java
index 5be75f2003..b3b2d3ad86 100644
--- a/client/src/com/vaadin/client/debug/internal/TestBenchSection.java
+++ b/client/src/com/vaadin/client/debug/internal/TestBenchSection.java
@@ -85,7 +85,7 @@ public class TestBenchSection implements Section {
}
}
- private final DebugButton tabButton = new DebugButton(Icon.WARNING,
+ private final DebugButton tabButton = new DebugButton(Icon.TESTBENCH,
"Pick Vaadin TestBench selectors");
private final FlowPanel content = new FlowPanel();