Skip to content

Commit

Permalink
plugins/videostream/VideoStream: Adding help to inform Ctrl+Click to …
Browse files Browse the repository at this point in the history
…mark frame position on map.
  • Loading branch information
paulosousadias committed Oct 19, 2023
1 parent f400f8d commit 7d356b1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,11 @@ public void actionPerformed(ActionEvent e) {
JLabel infoZoom = new JLabel(I18n.text("For zoom use Alt-Z"));
infoZoom.setEnabled(false);
popup.add(infoZoom, JMenuItem.CENTER_ALIGNMENT);

JLabel markSnap = new JLabel(I18n.text("Ctr+Click to mark frame in the map"));
markSnap.setEnabled(false);
popup.add(markSnap, JMenuItem.CENTER_ALIGNMENT);

popup.show((Component) e.getSource(), e.getX(), e.getY());
}
}
Expand Down

0 comments on commit 7d356b1

Please sign in to comment.