mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-03 17:05:43 +02:00
Make set_dirty ignore changes that don't do anything.
This commit is contained in:
@@ -311,6 +311,9 @@ sub update_tree {
|
|||||||
sub set_dirty {
|
sub set_dirty {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($dirty) = @_;
|
my ($dirty) = @_;
|
||||||
|
|
||||||
|
return if $dirty and $self->is_dirty;
|
||||||
|
return if (not $dirty) and (not $self->is_dirty);
|
||||||
|
|
||||||
my $selection = $self->{presets_choice}->GetSelection;
|
my $selection = $self->{presets_choice}->GetSelection;
|
||||||
my $i = $self->{dirty} // $selection; #/
|
my $i = $self->{dirty} // $selection; #/
|
||||||
|
|||||||
Reference in New Issue
Block a user