mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
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)
11 lines
175 B
C++
11 lines
175 B
C++
#include "about_controller.h"
|
|
|
|
namespace Settings {
|
|
|
|
void AboutController::viewWillAppear() {
|
|
GenericSubController::viewWillAppear();
|
|
m_view.setMessages(nullptr, 0);
|
|
}
|
|
|
|
}
|