Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Unified Diff: ui/views/examples/label_example.cc

Issue 343853002: Fix new avatar button appearance regressions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unused label halo code; update example. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/controls/label.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/label_example.cc
diff --git a/ui/views/examples/label_example.cc b/ui/views/examples/label_example.cc
index 885a182a2185ca8a32bed314c37fac4c3e2bf074..4dea806e4d4e705e62c108c86b94b6a44cb27180 100644
--- a/ui/views/examples/label_example.cc
+++ b/ui/views/examples/label_example.cc
@@ -62,11 +62,12 @@ void LabelExample::CreateExampleView(View* container) {
label->SetEnabledColor(SK_ColorBLUE);
container->AddChildView(label);
- label = new Label(ASCIIToUTF16("A Courier-18 label with a halo and shadow."));
+ label = new Label(ASCIIToUTF16("A Courier-18 label with shadows."));
label->SetFontList(gfx::FontList("Courier, 18px"));
- label->set_shadows(gfx::ShadowValues(1,
- gfx::ShadowValue(gfx::Point(2, 2), 0, SK_ColorGRAY)));
- label->set_halo_color(SK_ColorGREEN);
+ gfx::ShadowValues shadows(1, gfx::ShadowValue(gfx::Point(), 1, SK_ColorRED));
+ gfx::ShadowValue shadow(gfx::Point(2, 2), 0, SK_ColorGRAY);
+ shadows.push_back(shadow);
+ label->set_shadows(shadows);
container->AddChildView(label);
label = new PreferredSizeLabel();
« no previous file with comments | « ui/views/controls/label.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698