Skip to content

Commit

Permalink
Fix issues related to new push field "Patch Set Description"
Browse files Browse the repository at this point in the history
Related to #495
Fixes #502
  • Loading branch information
uwolfer committed Jan 15, 2024
1 parent f030360 commit 0c07a00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ private void copyGerritPluginClassesToGitPlugin(ClassPool classPool, ClassLoader
loadClass(classPool, targetClassLoader, "com.urswolfer.intellij.plugin.gerrit.push.GerritPushExtensionPanel$ChangeActionListener");
loadClass(classPool, targetClassLoader, "com.urswolfer.intellij.plugin.gerrit.push.GerritPushExtensionPanel$ChangeTextActionListener");
loadClass(classPool, targetClassLoader, "com.urswolfer.intellij.plugin.gerrit.push.GerritPushExtensionPanel$SettingsStateActionListener");
loadClass(classPool, targetClassLoader, "com.urswolfer.intellij.plugin.gerrit.util.UrlUtils");
}

private void loadClass(ClassPool classPool, ClassLoader targetClassLoader, String className) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ private void createLayout() {
reviewersTextField = addTextField(
"Reviewers (user names, comma separated):",
"Users which will be added as reviewers.",
10);
11);

ccTextField = addTextField(
"CC (user names, comma separated):",
"Users which will receive carbon copies of the notification message.",
11);
12);

final JPanel settingLayoutPanel = new JPanel();
settingLayoutPanel.setAlignmentX(Component.LEFT_ALIGNMENT);
Expand Down

0 comments on commit 0c07a00

Please sign in to comment.