Merge pull request #35 from GuillaumeGomez/patch-1

Just because indentation
This commit is contained in:
Alexandre Bury 2016-06-29 09:24:21 -07:00 committed by GitHub
commit 69e58a76db

View File

@ -29,8 +29,8 @@ fn main() {
// Creates a dialog with a single "Quit" button
siv.add_layer(Dialog::new(TextView::new("Hello Dialog!"))
.title("Cursive")
.button("Quit", |s| s.quit()));
.title("Cursive")
.button("Quit", |s| s.quit()));
// Starts the event loop.
siv.run();