Files
Upsilon/apps/settings/sub_menu/about_controller_official.cpp
Émilie Feral 3612d25539 [apps/settings] AboutController::m_view should live inside the Settings
app

This fixes the following bug: AboutController::view was built at first
call of "AboutController::view()" but the Settings can be rebuilt later
and the pointers might have moved (hence the ones used in
AboutController::view constructor which is not rebuilt then)
2020-02-12 15:13:26 +01:00

11 lines
175 B
C++

#include "about_controller.h"
namespace Settings {
void AboutController::viewWillAppear() {
GenericSubController::viewWillAppear();
m_view.setMessages(nullptr, 0);
}
}