From 8ecd4fdb628921098753f53fa96145d5bbc2bc16 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Wed, 14 Mar 2018 15:48:08 -0700 Subject: [PATCH] Revert colors in mines example --- examples/mines/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mines/main.rs b/examples/mines/main.rs index 7e261e4..950f387 100644 --- a/examples/mines/main.rs +++ b/examples/mines/main.rs @@ -208,7 +208,7 @@ impl cursive::view::View for BoardView { }; printer.with_color( - ColorStyle::new(color, Color::Dark(BaseColor::Black)), + ColorStyle::new(Color::Dark(BaseColor::Black), color), |printer| printer.print((x, y), text), ); }