summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--options/tie.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/tie.hpp b/options/tie.hpp
index 46ade075..194a3a5d 100644
--- a/options/tie.hpp
+++ b/options/tie.hpp
@@ -57,7 +57,7 @@ void tie_setting(value<t>& v, QComboBox* cb, From&& fn_to_index, To&& fn_to_valu
v.DIRECT_CONNTYPE);
value_::connect(&v, value_::value_changed<t>(),
cb, [cb, fn_to_index](detail::cv_qualified<t>& v) { cb->setCurrentIndex(fn_to_index(v)); },
- v.DIRECT_CONNTYPE);
+ v.SAFE_CONNTYPE);
}
template<typename t, typename F>