Allow vertical scrolling in new popups

This commit is contained in:
Cohee
2024-06-26 00:35:21 +03:00
parent 3e1b54c6f0
commit d188795591
5 changed files with 4 additions and 7 deletions

View File

@ -1432,7 +1432,7 @@ export function registerDebugFunction(functionId, name, description, func) {
async function showDebugMenu() {
const template = await renderTemplateAsync('debug', { functions: debug_functions });
callGenericPopup(template, POPUP_TYPE.TEXT, '', { wide: true, large: true });
callGenericPopup(template, POPUP_TYPE.TEXT, '', { wide: true, large: true, allowVerticalScrolling: true });
}
switchUiMode();