mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
Do not apply commit message inspections during rebase
Currently commit message inspections do not track possible comments in commit message. And thus they do not make much sense during rebase (where commit message is provided together with comments).
This commit is contained in:
@@ -43,7 +43,7 @@ class GitRebaseUnstructuredEditor extends DialogWrapper {
|
||||
|
||||
myRootLabel = new JBLabel("Git Root: " + root.getPresentableUrl());
|
||||
|
||||
myTextEditor = new CommitMessage(project, false, false, true);
|
||||
myTextEditor = new CommitMessage(project, false, false, false);
|
||||
myTextEditor.setText(initialText);
|
||||
myTextEditor.getEditorField().setCaretPosition(0);
|
||||
init();
|
||||
|
||||
Reference in New Issue
Block a user