We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77e5061 commit 62887e8Copy full SHA for 62887e8
ui-sys/libui
ui/examples/controlgallery.rs
@@ -97,11 +97,13 @@ fn run() {
97
cbox.append("Combobox Item 3");
98
inner.append(cbox.into(), false);
99
100
- let cbox = Combobox::new_editable();
101
- cbox.append("Editable Item 1");
102
- cbox.append("Editable Item 2");
103
- cbox.append("Editable Item 3");
104
- inner.append(cbox.into(), false);
+ // FIXME(jamesmunns) Editable comboboxes are a nogo
+
+ // let cbox = Combobox::new_editable();
+ // cbox.append("Editable Item 1");
+ // cbox.append("Editable Item 2");
105
+ // cbox.append("Editable Item 3");
106
+ // inner.append(cbox.into(), false);
107
108
let rb = RadioButtons::new();
109
rb.append("Radio Button 1");
0 commit comments