sublime text 3142
As shown in the figure, the mouse can not be scrolled each time the folder is clicked, and when the sidebar is dragged, the mouse can scroll
sublime text 3126
sublime text 3142
As shown in the figure, the mouse can not be scrolled each time the folder is clicked, and when the sidebar is dragged, the mouse can scroll
sublime text 3126
I cannot understand this with the figure. I tried that on Sublime Text build 3142, and seems to be working fine.
Are you using some theme? Can you reproduce it on a clean install? See https://www.sublimetext.com/docs/3/revert.html to learn it.
Perhaps this is fixed on the new development version 3142, can you try it?
I deleted all the plugins after the same problem, and then I found that the Chinese, Korean, Japanese named files will slow down the sidebar
Yes, font rendering for DirectWrite on windows doesn’t support font-fallback automatically like GDI does while also supporting clipping. It requires us to segment text runs into different scripts and then search for fonts that support them. You could try changing the setting "theme_font_options": ["gdi"]
to see if it helps performance. Unfortunately GDI has some issues of its own, but it may be an acceptable tradeoff in your case.
After using this method does not work, and then I run by setting the following code;
{
“class”: “sidebar_label”,
“font.face”: “Consolas”,
“font.size”: 18
},
{
“class”: “tab_label”,
“font.face”: “Consolas”,
“font.size”: 16
},
{
“class”: “tool_tip_label_control”,
“font.face”: “Consolas”,
“font.size”: 14
},
{
“class”: “quick_panel_label”,
“font.face”: “Consolas”,
“font.size”: 18
},
{
“class”: “quick_panel_path_label”,
“font.face”: “Consolas”,
“font.size”: 18
},
{
“class”: “quick_panel_score_label”,
“font.face”: “Consolas”,
“font.size”: 18
},
{
“class”: “sidebar_heading”,
“font.size”: 18
},
In the st3126 run very well, the high version will die
Re-reading your original post, it doesn’t seem to be about performance, but rather than the scroll bar isn’t allowing you to scroll all the way down. Is that correct?
That is correct, this has not been addressed yet. Have you created an issue at https://github.com/SublimeTextIssues/Core/issues? If not, that will help ensure it gets looked at in a future release.