Merge pull request #4296 from PARAG00991/nothingselectedmsg

message when reference is find out on nothing selected
This commit is contained in:
Ben Fry
2016-02-13 17:37:27 -05:00

View File

@@ -328,6 +328,9 @@ public class JavaEditor extends Editor {
if (textarea.isSelectionActive()) {
handleFindReference();
}
else {
statusNotice(Language.text("editor.status.find_reference.select_word_first"));
}
}
});
menu.add(item);