fix: only show pretty print actions when debugger is stopped (#1540)

Fixes #1539
This commit is contained in:
Connor Peet 2023-02-01 09:52:48 -08:00 коммит произвёл GitHub
Родитель df22101629
Коммит d9b8ae334a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1323,7 +1323,7 @@ const menus: Menus = {
{
command: Commands.PrettyPrint,
title: refString('pretty.print.script'),
when: forAnyDebugType('debugType', 'inDebugMode'),
when: forAnyDebugType('debugType', 'debugState == stopped'),
},
{
command: Commands.StartProfile,
@ -1501,7 +1501,7 @@ const menus: Menus = {
{
command: Commands.PrettyPrint,
group: 'navigation',
when: `resource in ${ContextKey.CanPrettyPrint}`,
when: `debugState == stopped && resource in ${ContextKey.CanPrettyPrint}`,
},
],
};