diff options
author | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-02-13 13:17:49 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-02-13 11:26:15 +0000 |
commit | 23cab23936813909c1837b54b6d125ea1eaa61d4 (patch) | |
tree | 3db0857c68b4a94902c01cee42c91927597ce781 /client/src | |
parent | 6f5b334247e024143b82c1c9e0c84b41d9bd2abb (diff) | |
download | vaadin-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.java | 4 | ||||
-rw-r--r-- | client/src/com/vaadin/client/debug/internal/TestBenchSection.java | 2 |
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(""), // MAXIMIZE(""), // RESET(""), // - PERSIST(""); // + PERSIST(""), // + TESTBENCH(""), // + ; 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(); |