diff options
Diffstat (limited to 'options/value.hpp')
-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) { |