Change debug drawer keybinding to F12 (#12171)

This commit is contained in:
Tommaso Sciortino
2025-10-28 12:10:40 -07:00
committed by GitHub
parent 39eb6ed9cc
commit ab1f195508
6 changed files with 8 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ export const ConsoleSummaryDisplay: React.FC<ConsoleSummaryDisplayProps> = ({
{errorCount > 0 && (
<Text color={theme.status.error}>
{errorIcon} {errorCount} error{errorCount > 1 ? 's' : ''}{' '}
<Text color={theme.text.secondary}>(ctrl+o for details)</Text>
<Text color={theme.text.secondary}>(F12 for details)</Text>
</Text>
)}
</Box>

View File

@@ -37,8 +37,7 @@ export const DetailedMessagesDisplay: React.FC<
>
<Box marginBottom={1}>
<Text bold color={theme.text.primary}>
Debug Console{' '}
<Text color={theme.text.secondary}>(ctrl+o to close)</Text>
Debug Console <Text color={theme.text.secondary}>(F12 to close)</Text>
</Text>
</Box>
<MaxSizedBox maxHeight={maxHeight} maxWidth={width - borderAndPadding}>