Skip to content

Commit

Permalink
Making AutoCompletion.isPopupVisible() public so application-specific…
Browse files Browse the repository at this point in the history
… KeyListeners, etc. can determine if code completion is going on
  • Loading branch information
bobbylight committed Sep 27, 2013
1 parent 0c05e04 commit 6de18c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/fife/ui/autocomplete/AutoCompletion.java
Original file line number Diff line number Diff line change
Expand Up @@ -660,11 +660,11 @@ public boolean isParameterAssistanceEnabled() {


/**
* Returns whether the popup window is visible.
* Returns whether the completion popup window is visible.
*
* @return Whether the popup window is visible.
* @return Whether the completion popup window is visible.
*/
private boolean isPopupVisible() {
public boolean isPopupVisible() {
return popupWindow!=null && popupWindow.isVisible();
}

Expand Down

0 comments on commit 6de18c3

Please sign in to comment.