Skip to content
This repository was archived by the owner on Aug 18, 2024. It is now read-only.

Commit 7c115af

Browse files
committed
0.1.1
1 parent f51f7fe commit 7c115af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/com/pistacium/modcheck/ModCheckFrame.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,14 +212,16 @@ private void initCenterLayout() {
212212
public void initMenuBar() {
213213
JMenuBar menuBar = new JMenuBar();
214214

215-
JMenu githubSource = new JMenu("Github...");
215+
JMenu source = new JMenu("Source...");
216+
JMenuItem githubSource = new JMenuItem("Github");
216217
githubSource.addActionListener(e -> {
217218
try {
218219
Desktop.getDesktop().browse(new URI("https://github.com/RedLime/ModCheck"));
219220
} catch (Exception ignored) {
220221
}
221222
});
222-
menuBar.add(githubSource);
223+
source.add(githubSource);
224+
menuBar.add(source);
223225

224226
this.setJMenuBar(menuBar);
225227
}

0 commit comments

Comments
 (0)