Bugfix: wrong default in extruder_offset tooltip. #3051
This commit is contained in:
parent
01a2a07ecd
commit
69a71db25b
1 changed files with 2 additions and 1 deletions
|
@ -334,7 +334,8 @@ sub get_option {
|
|||
gui_flags => $optdef->{gui_flags},
|
||||
label => ($self->full_labels && defined $optdef->{full_label}) ? $optdef->{full_label} : $optdef->{label},
|
||||
sidetext => $optdef->{sidetext},
|
||||
tooltip => $optdef->{tooltip} . " (default: " . $default_value . ")",
|
||||
# calling serialize() ensures we get a stringified value
|
||||
tooltip => $optdef->{tooltip} . " (default: " . $self->config->serialize($opt_key) . ")",
|
||||
multiline => $optdef->{multiline},
|
||||
width => $optdef->{width},
|
||||
min => $optdef->{min},
|
||||
|
|
Loading…
Reference in a new issue