Hi there, at the moment in 2.2 it is not configurable, but we could put in an option to prevent it being selected.
You can set an action for the title using "setTitlePressedCallback" as per below, I usually use it to show version information:
setTitlePressedCallback([](int id) {
withMenuDialogIfAvailable([](MenuBasedDialog* dlg) {
dlg->setButtons(BTNTYPE_CLOSE, BTNTYPE_NONE);
dlg->showRam("ARM Example", false);
char menuVer[10];
tccore::copyTcMenuVersion(menuVer, sizeof menuVer);
dlg->copyIntoBuffer(menuVer);
});
});