Missing ?
This commit is contained in:
parent
7cc0f6ad83
commit
f8f3ac270e
@ -116,7 +116,7 @@ public class MapPanel extends JPanel {
|
||||
public void mouseClicked(MouseEvent e) {
|
||||
if(startPos != null) {
|
||||
if(e.getButton() == 1) {
|
||||
int result = JOptionPane.showOptionDialog(frame, "What do you want to do", "Bulk Marking", JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, null, new Object[] {"Complete", "Uncomplete", "Cancel"}, "Complete");
|
||||
int result = JOptionPane.showOptionDialog(frame, "What do you want to do?", "Bulk Marking", JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, null, new Object[] {"Complete", "Uncomplete", "Cancel"}, "Complete");
|
||||
if(result == 2) return;
|
||||
List<Marker> markers = getMarkers(getMarkedArea(), zoom);
|
||||
if(markers.isEmpty()) return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user