[EGD-7362] Merge release/0.76.1 into master

Merge release/0.76.1 into master.
This commit is contained in:
Piotr Tański
2021-08-31 19:45:52 +02:00
committed by Piotr Tanski
parent f5530a3ac4
commit 90e7a48198
459 changed files with 4919 additions and 1410 deletions

View File

@@ -29,9 +29,10 @@ namespace app
ApplicationNotes::ApplicationNotes(std::string name,
std::string parent,
sys::phone_modes::PhoneMode mode,
sys::phone_modes::PhoneMode phoneMode,
sys::bluetooth::BluetoothMode bluetoothMode,
StartInBackground startInBackground)
: Application(std::move(name), std::move(parent), mode, startInBackground, NotesStackSize)
: Application(std::move(name), std::move(parent), phoneMode, bluetoothMode, startInBackground, NotesStackSize)
{
bus.channels.push_back(sys::BusChannel::ServiceDBNotifications);
}
@@ -57,13 +58,7 @@ namespace app
}
}
if (resp != nullptr) {
if (auto command = callbackStorage->getCallback(resp); command->execute()) {
refreshWindow(gui::RefreshModes::GUI_REFRESH_FAST);
}
return sys::msgHandled();
}
return sys::msgNotHandled();
return handleAsyncResponse(resp);
}
sys::ReturnCodes ApplicationNotes::InitHandler()