This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from AQuillet/master
Added optional "contentSize" attribute
- Loading branch information
Showing
6 changed files
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,9 @@ public class AppBundleProperties { | |
|
||
// HiRes capability, optional | ||
private boolean mNSHighResolutionCapable = false; | ||
|
||
// Window size, optional (per Adrien Quillet <[email protected]>) | ||
private String mNSPreferencesContentSize = null; | ||
|
||
// Support for JavaX key, optional | ||
private boolean mJavaXKey = false; | ||
|
@@ -286,6 +289,14 @@ public void setNSHighResolutionCapable(boolean b) { | |
public boolean getNSHighResolutionCapable() { | ||
return mNSHighResolutionCapable; | ||
} | ||
|
||
public void setNSPreferencesContentSize(String s) { | ||
mNSPreferencesContentSize = s; | ||
} | ||
|
||
public String getNSPreferencesContentSize() { | ||
return mNSPreferencesContentSize; | ||
} | ||
|
||
public void setJavaXKey(boolean b) { | ||
mJavaXKey = b; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters