Added warning when min_value of range is smaller than 0 while exp_edit is true.

Added warning when min_value of range is smaller than 0 while exp_edit is true.

The new warning is: "If exp_edit is true min_value must be > 0."
This commit is contained in:
DualMatrix 2018-09-23 20:59:35 +02:00
parent 2c7908739a
commit e78bfe19a7
2 changed files with 19 additions and 0 deletions

View file

@ -30,6 +30,19 @@
#include "range.h"
String Range::get_configuration_warning() const {
String warning = Control::get_configuration_warning();
if (shared->exp_ratio && shared->min <= 0) {
if (warning != String()) {
warning += "\n";
}
warning += TTR("If exp_edit is true min_value must be > 0.");
}
return warning;
}
void Range::_value_changed_notify() {
_value_changed(shared->val);
@ -90,6 +103,8 @@ void Range::set_min(double p_min) {
set_value(shared->val);
shared->emit_changed("min");
update_configuration_warning();
}
void Range::set_max(double p_max) {
@ -277,6 +292,8 @@ bool Range::is_using_rounded_values() const {
void Range::set_exp_ratio(bool p_enable) {
shared->exp_ratio = p_enable;
update_configuration_warning();
}
bool Range::is_ratio_exp() const {

View file

@ -97,6 +97,8 @@ public:
void share(Range *p_range);
void unshare();
virtual String get_configuration_warning() const;
Range();
~Range();
};