[demo] disable name clash demo, since it is not working anyway

This commit is contained in:
Emil Ernerfeldt 2020-08-28 16:43:24 +02:00
parent a2160a5e12
commit d5a1385870

View file

@ -341,7 +341,7 @@ impl DemoWindow {
.show(ui, |ui| self.layout.ui(ui)); .show(ui, |ui| self.layout.ui(ui));
CollapsingHeader::new("Tree") CollapsingHeader::new("Tree")
.default_open(true) .default_open(false)
.show(ui, |ui| self.tree.ui(ui)); .show(ui, |ui| self.tree.ui(ui));
ui.collapsing("Columns", |ui| { ui.collapsing("Columns", |ui| {
@ -379,6 +379,8 @@ impl DemoWindow {
}); });
}); });
if false {
// TODO: either show actual name clash, or remove this example
ui.collapsing("Name clash demo", |ui| { ui.collapsing("Name clash demo", |ui| {
ui.label("\ ui.label("\
Widgets that store state require unique identifiers so we can track their state between frames. \ Widgets that store state require unique identifiers so we can track their state between frames. \
@ -390,10 +392,10 @@ impl DemoWindow {
To help you debug this, an error message is printed on screen:"); To help you debug this, an error message is printed on screen:");
ui.collapsing("Collapsing header", |ui| { ui.collapsing("Collapsing header", |ui| {
ui.label("Contents of first folddable ui"); ui.label("Contents of first foldable ui");
}); });
ui.collapsing("Collapsing header", |ui| { ui.collapsing("Collapsing header", |ui| {
ui.label("Contents of second folddable ui"); ui.label("Contents of second foldable ui");
}); });
ui.label("\ ui.label("\
@ -403,6 +405,7 @@ impl DemoWindow {
ui.add(Button::new("Button")); ui.add(Button::new("Button"));
}); });
} }
}
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -426,7 +429,7 @@ impl Default for Widgets {
count: 0, count: 0,
slider_value: 3.4, slider_value: 3.4,
single_line_text_input: "Hello World!".to_owned(), single_line_text_input: "Hello World!".to_owned(),
multiline_text_input: "Text can both be so wide that it needs a linebreak, but you can also add manual linebreak by pressing enter, creating new paragraphs.\nThis is the start of the next paragraph.\n\nClick me to edit me!".to_owned(), multiline_text_input: "Text can both be so wide that it needs a line break, but you can also add manual line break by pressing enter, creating new paragraphs.\nThis is the start of the next paragraph.\n\nClick me to edit me!".to_owned(),
} }
} }
} }