mirror of
https://github.com/developersu/ns-usbloader.git
synced 2025-05-13 14:44:48 -04:00
A bit more for split-merge files functionality
This commit is contained in:
parent
4dc6d0ae0c
commit
d00b914214
10 changed files with 321 additions and 29 deletions
|
@ -125,4 +125,10 @@ public class AppPreferences {
|
|||
|
||||
public double getSceneHeight(){ return preferences.getDouble("WIND_HEIGHT", 475.0); }
|
||||
public void setSceneHeight(double value){ preferences.putDouble("WIND_HEIGHT", value); }
|
||||
// Split and Merge //
|
||||
public int getSplitMergeType(){ return preferences.getInt("SM_TYPE", 0); }
|
||||
public void setSplitMergeType(int value){ preferences.putInt("SM_TYPE", value); }
|
||||
|
||||
public String getSplitMergeRecent(){ return preferences.get("SM_RECENT", System.getProperty("user.home")); }
|
||||
public void setSplitMergeRecent(String value){ preferences.put("SM_RECENT", value); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue