Change Project Explorer tree view font size in Eclipse Oxygen

前端 未结 12 1285
难免孤独
难免孤独 2020-12-24 08:04

I am using Eclipse Version: Oxygen.1a Release (4.7.1a) and I want to enlarge the Project Explorer tree view font size because I have some sight issues and thus I searched ma

12条回答
  •  别那么骄傲
    2020-12-24 08:56

    I have been searching this for every version of Eclipse and finally I got something which helped me to increase the font size and font type of of the project explorer.

    1.go to below path on your local environment

    .p2 -> pool -> plugins -> org.eclipse.ui.themes_(version) -> css -> e4_basestyle

    2.paste below lines at the end of the file.

    Tree {
         font-size: 14px; /* <-- Desired font size */
         font: Consolas;  /* <-- Font you want to have */
    }
    
    1. Restart the eclipse
    2. You will get the new defined size and font in your project explorer of eclipse.

    NOTE : I tried this on latest version of the eclipse on windows 10 and it worked for me. I did not tried on the previous version.

提交回复
热议问题