mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 06:30:46 -04:00
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.
19 lines
490 B
C++
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
|