mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Enlarge the Output filename format field
This commit is contained in:
parent
a59b82db06
commit
19a78de82f
2 changed files with 3 additions and 6 deletions
|
@ -33,6 +33,7 @@ our $Options = {
|
||||||
label => 'Output filename format',
|
label => 'Output filename format',
|
||||||
cli => 'output-filename-format=s',
|
cli => 'output-filename-format=s',
|
||||||
type => 's',
|
type => 's',
|
||||||
|
width => 300,
|
||||||
},
|
},
|
||||||
|
|
||||||
# printer options
|
# printer options
|
||||||
|
|
|
@ -42,12 +42,8 @@ sub new {
|
||||||
my $field;
|
my $field;
|
||||||
if ($opt->{type} =~ /^(i|f|s|s@)$/) {
|
if ($opt->{type} =~ /^(i|f|s|s@)$/) {
|
||||||
my $style = 0;
|
my $style = 0;
|
||||||
my $size = Wx::wxDefaultSize;
|
$style = &Wx::wxTE_MULTILINE if $opt->{multiline};
|
||||||
|
my $size = Wx::Size->new($opt->{width} || -1, $opt->{height} || -1);
|
||||||
if ($opt->{multiline}) {
|
|
||||||
$style = &Wx::wxTE_MULTILINE;
|
|
||||||
$size = Wx::Size->new($opt->{width} || -1, $opt->{height} || -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
my ($get, $set) = $opt->{type} eq 's@' ? qw(serialize deserialize) : qw(get set);
|
my ($get, $set) = $opt->{type} eq 's@' ? qw(serialize deserialize) : qw(get set);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue