From 2ee5c6f4e9df7a2be775235a19c32618dbefaf1a Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Thu, 4 Aug 2016 18:01:46 -0700 Subject: [PATCH] Don't run the print_box example It was messing with travis? --- src/printer.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/printer.rs b/src/printer.rs index e8e47a3..2a1eddb 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -118,7 +118,7 @@ impl Printer { /// /// # Examples /// - /// ``` + /// ```no_run /// # use cursive::Printer; /// # use cursive::theme; /// # let printer = Printer::new((6,4), theme::load_default()); @@ -136,6 +136,9 @@ impl Printer { let borders = if let Some(borders) = self.theme.borders { borders } else { + // No border, no box... + // TODO: still allow other boxes? + // For instance make the check in the view. return; };