Skip to content

Commit

Permalink
fix macro recordability - remove " " from gd label
Browse files Browse the repository at this point in the history
While it was nice to have the label text read
Show "Save PDF" Dialog
the escaped " "  didnt play nice with the macro recorder, so we can live
without the " ".
  • Loading branch information
chalkie666 authored and tomka committed Aug 3, 2015
1 parent 2c6f525 commit 6318f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/Coloc_2.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public boolean showDialog() {
gd.addChoice("Threshold regression", regressions,
regressions[indexRegr]);

gd.addCheckbox("Show_\"Save_PDF\"_Dialog", autoSavePdf);
gd.addCheckbox("Show_Save_PDF_Dialog", autoSavePdf);
gd.addCheckbox("Display_Images_in_Result", displayImages);
gd.addCheckbox("Display_Shuffled_Images", displayShuffledCostes);
final Checkbox shuffleCb = (Checkbox) gd.getCheckboxes().lastElement();
Expand Down

0 comments on commit 6318f0f

Please sign in to comment.