AP_Param: apply notify check to AP_ParamV too

thanks to Francisco
This commit is contained in:
Andrew Tridgell 2016-12-10 08:32:27 +11:00 committed by Lucas De Marchi
parent a440ac4c9d
commit be9ac273ce

View File

@ -641,9 +641,11 @@ public:
/// Value setter - set value, tell GCS /// Value setter - set value, tell GCS
/// ///
void set_and_notify(const T &v) { void set_and_notify(const T &v) {
if (v != _value) {
set(v); set(v);
notify(); notify();
} }
}
/// Combined set and save /// Combined set and save
/// ///