Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions com/repdev/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public class Config implements Serializable {
private boolean windowMaximized;
private Point windowSize;
private boolean listUnusedVars, wrapSearch, caseSensitive, neverTerminateKeepAlive;
private boolean includeFoldedSections;
private int terminateHour;
private int terminateMinute;
private int sashHSize, sashVSize;
Expand Down Expand Up @@ -436,6 +437,22 @@ public static boolean getCaseSensitive(){
public static void setCaseSensitive(boolean b){
me.caseSensitive = b;
}

/**
* Return true if Include Folded Sections is checked in the FindReplaceShell dialogue box.
* @return boolean
*/
public static boolean getIncludeFoldedSections(){
return me.includeFoldedSections;
}

/**
* Set this to true if Include Folded Sections is checked in the FindReplaceShell dialogue box.
* @param boolean
*/
public static void setIncludeFoldedSections(boolean b){
me.includeFoldedSections = b;
}

/**
* Returns the current version in the repdev.conf file
Expand Down
Loading