Remove label for large text fields

This commit is contained in:
Alessandro Ranellucci 2012-06-17 23:24:10 +02:00
parent ce9fdbc047
commit b7983b54f8
3 changed files with 35 additions and 16 deletions

View file

@ -115,6 +115,7 @@ sub new {
$self->AddOptionsPage('Notes', 'note.png', optgroups => [
{
title => 'Notes',
no_labels => 1,
options => [qw(notes)],
},
]);
@ -129,8 +130,13 @@ sub new {
options => [qw(gcode_comments output_filename_format)],
},
{
title => 'Advanced',
options => [qw(post_process duplicate_distance)], # this is not the right place for duplicate_distance
title => 'Post-processing scripts',
no_labels => 1,
options => [qw(post_process)], # this is not the right place for duplicate_distance
},
{
title => 'Other',
options => [qw(duplicate_distance)], # this is not the right place for duplicate_distance
},
]);
@ -187,8 +193,19 @@ sub new {
$self->AddOptionsPage('Custom G-code', 'cog.png', optgroups => [
{
title => 'Custom G-code',
options => [qw(start_gcode end_gcode layer_gcode)],
title => 'Start G-code',
no_labels => 1,
options => [qw(start_gcode)],
},
{
title => 'End G-code',
no_labels => 1,
options => [qw(end_gcode)],
},
{
title => 'Layer change G-code',
no_labels => 1,
options => [qw(layer_gcode)],
},
]);
@ -203,7 +220,6 @@ sub new {
},
]);
return $self;
}