Xquartz: Use org.x.X11 instead of com.apple.X11 for preferences
Fixed inconsistency so preferences get read from the correct source. (cherry picked from commit a74c38bd9f28735acd602d359d7ca6357aed1e93)
This commit is contained in:
@@ -138,8 +138,7 @@ read_boolean_pref (CFStringRef name, int default_)
|
||||
int value;
|
||||
Boolean ok;
|
||||
|
||||
value = CFPreferencesGetAppBooleanValue (name,
|
||||
CFSTR ("com.apple.x11"), &ok);
|
||||
value = CFPreferencesGetAppBooleanValue (name, CFSTR ("org.x.x11"), &ok);
|
||||
return ok ? value : default_;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user