작성
·
243
0
ctrl+shift+b 로 실행후 하단에 뜬 창을 엑스박스 누르면 이 오류가 생기는데 어떻게 해결해야할까요?
답변 2
0
저도 동일한 현상이 발생하는데 아래 주신 경로는 어떻게 들어가면 되나요?
못 찾겠어요..ㅠ
.atom\packages\script\node_modules\atom-message-panel\lib\MessagePanelView.js
0
안녕하세요.
임시적인 해결책으로 .atom\packages\script\node_modules\atom-message-panel\lib\MessagePanelView.js 파일의 187번째 줄을
MessagePanelView.prototype.remove = function (index) {
this.messages.splice(-index, 1);
this.body.children()[index].remove();
};
에서
MessagePanelView.prototype.remove = function (index) {
$('.native-key-bindings.script-view').remove();
};
로 변경해보시길 바랍니다.
감사합니다 :)