Merge pull request #258 from jaynus/combo_fix

Small fix for missing .end() statement on new ComboBox causing a panic
This commit is contained in:
Joonas Javanainen 2019-09-07 16:23:56 +03:00 committed by GitHub
commit 6a9fb254d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,6 +213,7 @@ impl<'a> ComboBox<'a> {
result = true; result = true;
} }
} }
_cb.end(ui);
} }
result result
} }