Skip to content
Snippets Groups Projects

Increase allowed border size to 750

All threads resolved!
3 files
+ 13
4
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
2
@@ -304,8 +304,8 @@ void setValue(T widget, double value)
if(widget->minimum() > value || widget->maximum() < value)
{
std::stringstream ss;
ss << "Value " << value << " for " << widget->objectName() << " is out of range from " << widget->minimum()
<< " to " << widget->maximum();
ss << "Value " << value << " for " << widget->objectName().toStdString() << " is out of range from "
<< widget->minimum() << " to " << widget->maximum();
throw std::domain_error(ss.str());
}
widget->setValue(value);
Loading