From 904bda9354bfa76b00eef5d976a547dc75d5f1d8 Mon Sep 17 00:00:00 2001 From: jaynus Date: Fri, 6 Sep 2019 16:46:37 -0700 Subject: [PATCH] Add an end statement for the build_simple combobox function which was causing crashing --- src/widget/combo_box.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widget/combo_box.rs b/src/widget/combo_box.rs index d764eaa..30906a9 100644 --- a/src/widget/combo_box.rs +++ b/src/widget/combo_box.rs @@ -213,6 +213,7 @@ impl<'a> ComboBox<'a> { result = true; } } + _cb.end(ui); } result }