Files
MuditaOS/module-apps/apps-common/popups/TetheringMenuPopup.hpp
Lefucjusz d403db4101 [MOS-1027] Fix lack of tethering icon on 'Tethering is on' popup
Fix of the issue that pressing menu button while
in tethering resulted in LTE and no signal icons
appear on status bar instead of tethering icon.
2023-08-30 11:13:54 +02:00

19 lines
490 B
C++

// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include <string>
#include "TetheringNotificationPopup.hpp"
namespace gui
{
class TetheringMenuPopup : public TetheringNotificationPopup
{
public:
TetheringMenuPopup(app::ApplicationCommon *app, const std::string &name);
void onBeforeShow(ShowMode mode, SwitchData *data) override;
};
} // namespace gui