mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-18 11:02:08 +00:00
Separate the Slice button a bit
This commit is contained in:
@@ -128,14 +128,14 @@ sub new {
|
||||
|
||||
my $slice_button = Wx::Button->new($self, -1, "Slice...");
|
||||
$slice_button->SetDefault();
|
||||
$buttons_sizer->Add($slice_button, 0);
|
||||
$buttons_sizer->Add($slice_button, 0, wxRIGHT, 20);
|
||||
EVT_BUTTON($self, $slice_button, sub { $self->do_slice });
|
||||
|
||||
my $save_button = Wx::Button->new($self, -1, "Save configuration...");
|
||||
my $save_button = Wx::Button->new($self, -1, "Save config...");
|
||||
$buttons_sizer->Add($save_button, 0);
|
||||
EVT_BUTTON($self, $save_button, sub { $self->save_config });
|
||||
|
||||
my $load_button = Wx::Button->new($self, -1, "Load configuration...");
|
||||
my $load_button = Wx::Button->new($self, -1, "Load config...");
|
||||
$buttons_sizer->Add($load_button, 0);
|
||||
EVT_BUTTON($self, $load_button, sub { $self->load_config });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user