Skip to content

Commit 62887e8

Browse files
committed
FF libui, disable editiable comboboxes for now in the example
1 parent 77e5061 commit 62887e8

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

ui-sys/libui

Submodule libui updated 113 files

ui/examples/controlgallery.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,13 @@ fn run() {
9797
cbox.append("Combobox Item 3");
9898
inner.append(cbox.into(), false);
9999

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);
100+
// FIXME(jamesmunns) Editable comboboxes are a nogo
101+
102+
// let cbox = Combobox::new_editable();
103+
// cbox.append("Editable Item 1");
104+
// cbox.append("Editable Item 2");
105+
// cbox.append("Editable Item 3");
106+
// inner.append(cbox.into(), false);
105107

106108
let rb = RadioButtons::new();
107109
rb.append("Radio Button 1");

0 commit comments

Comments
 (0)