Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Juno and Retina Resolution

Tags:

Is it possible to have Eclipse Juno display at retina resolution? I was able to edit info.plist for previous versions of Eclipse, but this does not work with Juno...

like image 408
ina Avatar asked Oct 22 '12 00:10

ina


2 Answers

Open the <Installation Directory>/Eclipse.app/Contents/Info.plist with a text editor and add the following before </dict>:

<key>NSHighResolutionCapable</key>
<true/>

If you open the Info.plist file with Xcode it should look like that:

Info.plist file after enabling high resolution

Now make a copy of the Eclipse application (Eclipse.app). You can copy it to the same directory it already is; this step is required just to make the OS reload the changes in the Info.plist file.

like image 197
Douglas Avatar answered Sep 22 '22 17:09

Douglas


Force update the Info.plist in the Terminal by using the lsregister command:

/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -v -f /Applications/eclipse/Eclipse.app
like image 23
Thelle Avatar answered Sep 20 '22 17:09

Thelle