mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
Store the tab name within each tab for reuse
This commit is contained in:
parent
d0588c2ef8
commit
30d88d7ffa
2 changed files with 14 additions and 7 deletions
|
@ -28,9 +28,9 @@ sub new {
|
|||
filament => Slic3r::GUI::Tab::Filament->new ($tabpanel, sync_presets_with => $self->{plater}{preset_choosers}{filament}),
|
||||
printer => Slic3r::GUI::Tab::Printer->new ($tabpanel, sync_presets_with => $self->{plater}{preset_choosers}{printer}),
|
||||
};
|
||||
$tabpanel->AddPage($self->{options_tabs}{print}, "Print settings");
|
||||
$tabpanel->AddPage($self->{options_tabs}{filament}, "Filament settings");
|
||||
$tabpanel->AddPage($self->{options_tabs}{printer}, "Printer settings");
|
||||
$tabpanel->AddPage($self->{options_tabs}{print}, $self->{options_tabs}{print}->title);
|
||||
$tabpanel->AddPage($self->{options_tabs}{filament}, $self->{options_tabs}{filament}->title);
|
||||
$tabpanel->AddPage($self->{options_tabs}{printer}, $self->{options_tabs}{printer}->title);
|
||||
|
||||
my $buttons_sizer;
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue