mirror of https://github.com/procxx/kepka.git
Fix bad function call in data export cancel.
This commit is contained in:
parent
34b0f6f014
commit
9b57725b8c
|
@ -301,7 +301,9 @@ void PanelController::stopWithConfirmation(FnMut<void()> callback) {
|
|||
if (!_state.is<ProcessingState>()) {
|
||||
LOG(("Export Info: Stop Panel Without Confirmation."));
|
||||
stopExport();
|
||||
callback();
|
||||
if (callback) {
|
||||
callback();
|
||||
}
|
||||
return;
|
||||
}
|
||||
auto stop = [=, callback = std::move(callback)]() mutable {
|
||||
|
|
Loading…
Reference in New Issue