Skip to content

Commit

Permalink
Merge pull request #21 from HaleyWang/develop
Browse files Browse the repository at this point in the history
run it by double-clicking it
  • Loading branch information
HaleyWang committed Jun 21, 2020
2 parents e0da320 + 56545e0 commit 0496a6d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 1 addition & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

An open source, tabbed, remote linux SSH connections manager.

It allows you to save your command, and run it next time by clicking with the mouse.

It allows you to save your command, and run it by double-clicking it.

## SpringRemote dark theme

Expand Down
Binary file modified build/libs/SpringRemote-0.1.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/com/haleywang/putty/view/HelpDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public HelpDialog(SpringRemoteView omegaRemote) {
JLabel linklabel = new JLabel("<html> Help: <a href='" + helpUrl + "'>" + helpUrl + "</a></html>");
linklabel.addMouseListener(new MouseAdapter() {

@Override
public void mouseClicked(MouseEvent e) {
try {
Desktop desktop = Desktop.getDesktop();
Expand Down Expand Up @@ -87,5 +88,4 @@ private static ProjectInfo getProperties() {
}
}


}
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ private void activeTabPanel() {
});

Container parent = getCurrentTabPanel().getParent();
changePanelBorder(parent, BorderFactory.createLineBorder(UiTool.toColorFromString("4db8f8"), 1));
changePanelBorder(parent, BorderFactory.createLineBorder(UiTool.toColorFromString("4db8f8"), 2));

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ private JTree createSideCommandTree() {
public void mouseClicked(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
myPopupEvent(e);
}

} else {
if (e.getClickCount() == 2) {
clickEvent(e);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ private JTree createShhConnentTree() {
public void mouseClicked(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
myPopupEvent(e);
}

} else {
if (e.getClickCount() == 2) {
clickEvent(e);
}
}
Expand Down

0 comments on commit 0496a6d

Please sign in to comment.