@lvce-editor/quick-pick-worker 4.19.1 → 4.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4108,7 +4108,7 @@ const shouldCloseBeforeSelect = (subId, pick) => {
|
|
|
4108
4108
|
const {
|
|
4109
4109
|
id
|
|
4110
4110
|
} = pick;
|
|
4111
|
-
return typeof id === 'string' && id.startsWith('ext.');
|
|
4111
|
+
return typeof id === 'string' && (id.startsWith('ext.') || id === 'Main.openKeyBindings');
|
|
4112
4112
|
};
|
|
4113
4113
|
const selectIndex = async (state, index, button = /* left */0) => {
|
|
4114
4114
|
const {
|