Is it possible to change the font size of the project panel?

前端 未结 9 2049
长情又很酷
长情又很酷 2020-12-07 19:36

I can see where it\'s possible to change editor fonts, but the project panel font seems unreasonably large. Overriding the default fonts only changes the upper path bar and

相关标签:
9条回答
  • 2020-12-07 20:33

    The fix for me was to switch the Theme from GTK+ to IntelliJ, I confirm that Darcula works as well. The fonts broke for me following a switch to proprietary NVIDIA video drivers. On Manjaro Linux running Android Studio.

    0 讨论(0)
  • 2020-12-07 20:34

    I recently had the problem as well; suddenly the font in the project panel was larger than the others. However, I found a hidden option in the settings of IntelliJ which disables this odd behavior:

    • Open the file ~\.IdeaIC2018.1\config\options\ide.general.xml
    • Set the entry with key bigger.font.in.project.view to false

    This is what the file now looks like for me:

    <application>
      <component name="GeneralSettings">
        <option name="confirmExit" value="false" />
        <option name="processCloseConfirmation" value="TERMINATE" />
        <option name="searchInBackground" value="true" />
      </component>
      <component name="Registry">
        <entry key="ide.tooltip.initialDelay" value="604" />
        <entry key="tabs.alphabetical" value="true" />
        <entry key="SBT.system.in.process" value="true" />
        <entry key="bigger.font.in.project.view" value="false" />
      </component>
    </application>
    

    I did not found this option in the GUI though.

    0 讨论(0)
  • 2020-12-07 20:35

    there is another settings for the UI elemens in Settings->Appearance->Override default fonts checkbox.

    0 讨论(0)
提交回复
热议问题