Make max value for graph f64::MAX (fixes #540)
This commit is contained in:
parent
ec7f982bdf
commit
e09c7364a5
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ impl ObjectImpl for GraphPriv {
|
||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
static PROPERTIES: Lazy<Vec<glib::ParamSpec>> = Lazy::new(|| {
|
static PROPERTIES: Lazy<Vec<glib::ParamSpec>> = Lazy::new(|| {
|
||||||
vec![
|
vec![
|
||||||
glib::ParamSpecDouble::new("value", "Value", "The value", 0f64, 100f64, 0f64, glib::ParamFlags::READWRITE),
|
glib::ParamSpecDouble::new("value", "Value", "The value", 0f64, f64::MAX, 0f64, glib::ParamFlags::READWRITE),
|
||||||
glib::ParamSpecDouble::new(
|
glib::ParamSpecDouble::new(
|
||||||
"thickness",
|
"thickness",
|
||||||
"Thickness",
|
"Thickness",
|
||||||
|
|
Loading…
Add table
Reference in a new issue