diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-12-24 23:27:10 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-12-24 23:27:10 +0100 |
commit | 3dd0eb7683df4bf1ef3818662bc1717fa68f2022 (patch) | |
tree | b01c6ed0322105e26481c7e1934c8700224b4e63 /options | |
parent | c1e08248e3c4137434ea6416521db7baa299085b (diff) |
options/value: adjust conntypes since slider_value handles it now
Diffstat (limited to 'options')
-rw-r--r-- | options/value.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/value.hpp b/options/value.hpp index 01746d67..253da0c4 100644 --- a/options/value.hpp +++ b/options/value.hpp @@ -150,8 +150,8 @@ public: return datum; } - static constexpr const Qt::ConnectionType DIRECT_CONNTYPE = Qt::AutoConnection; - static constexpr const Qt::ConnectionType SAFE_CONNTYPE = Qt::AutoConnection; + static constexpr const Qt::ConnectionType DIRECT_CONNTYPE = Qt::DirectConnection; + static constexpr const Qt::ConnectionType SAFE_CONNTYPE = Qt::QueuedConnection; value(bundle b, const QString& name, t def) : base_value(b, name, &is_equal, std::type_index(typeid(element_type))), def(def) { |