We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00ef465 commit 6ec531fCopy full SHA for 6ec531f
1 file changed
src/main/java/com/junichi11/netbeans/modules/github/issues/utils/UiUtils.java
@@ -41,6 +41,8 @@
41
*/
42
package com.junichi11.netbeans.modules.github.issues.utils;
43
44
+import com.junichi11.netbeans.modules.github.issues.options.GitHubIssuesOptions;
45
+import org.netbeans.api.options.OptionsDisplayer;
46
import org.openide.DialogDisplayer;
47
import org.openide.NotifyDescriptor;
48
@@ -75,4 +77,8 @@ private static Object showDialog(String message, int type) {
75
77
return DialogDisplayer.getDefault().notify(descriptor);
76
78
}
79
80
+ public static void showOptions() {
81
+ OptionsDisplayer.getDefault().open(GitHubIssuesOptions.SUB_PATH);
82
+ }
83
+
84
0 commit comments