Skip to content

Commit

Permalink
fix mapping lock Input
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Dec 23, 2024
1 parent 1f7c1e2 commit 756b333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Common/Processor/Mapping/Input/MappingInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ StandardMappingInput::~StandardMappingInput()
void StandardMappingInput::lockInput(Parameter* input)
{
setInput(input);
if (input != nullptr && !list->isClearing) inputTarget->setEnabled(false);
if (input != nullptr && (list == nullptr || !list->isClearing)) inputTarget->setEnabled(false);
}


Expand Down

0 comments on commit 756b333

Please sign in to comment.