Skip to content

Commit

Permalink
Don't run the print_box example
Browse files Browse the repository at this point in the history
It was messing with travis?
  • Loading branch information
gyscos committed Aug 5, 2016
1 parent cadb585 commit 2ee5c6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Printer {
///
/// # Examples
///
/// ```
/// ```no_run
/// # use cursive::Printer;
/// # use cursive::theme;
/// # let printer = Printer::new((6,4), theme::load_default());
Expand All @@ -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;
};

Expand Down

0 comments on commit 2ee5c6f

Please sign in to comment.