mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
21 lines
519 B
C++
21 lines
519 B
C++
#include "country_controller.h"
|
|
|
|
namespace Settings {
|
|
|
|
CountryController::CountryController(Responder * parentResponder, KDCoordinate verticalMargin) :
|
|
Shared::CountryController(parentResponder, verticalMargin)
|
|
{
|
|
m_contentView.shouldDisplayTitle(false);
|
|
}
|
|
|
|
|
|
bool CountryController::handleEvent(Ion::Events::Event event) {
|
|
if (Shared::CountryController::handleEvent(event) || event == Ion::Events::Left) {
|
|
static_cast<StackViewController *>(parentResponder())->pop();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|