eclipse icon text UI is too small on large screen monitor

Problem Description

我的显示器分辨率是1920*1080,eclipse启动后,界面上的图标和字体过小,如下图所示

Insert image description here

Fix icon size

Insert image description here
Add the following code to the eclipse.ini file:

-Dswt.autoScale=200

Insert image description here

Solve the problem that the text is too small

Insert image description here
File path: C:\eclipse\plugins\org.eclipse.ui.themes_1.2.600.v20190513-0458\css\e4_basestyle.cssAdd
the following code

CTabFolder Tree{
  font-size: 18px;
}

Insert image description here

Guess you like

Origin blog.csdn.net/Zhang_YingJie/article/details/103194930