-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icons AND Arrows? #182
Comments
Sublime Text 3 Build 3062 changed the way folders and files are rendered in the sidebar. The default ST UI now renders an arrow with folder icon. Soda Theme was updated to work correctly with this change. As a result, the There may be ways to work around this change in the upstream UI, but in the short term it was needed to unbreak Soda Theme, particularly with other UI additions like the sidebar folder loading indicators. |
* Sidebar tree with row_padding of [0, 3] Removes extra padding * Sidebar group closed with content_margin of [0, 8] Removes arrows (and leaves just folders) * Sidebar file icons with content_margin of [0, 8] Removes extra padding in files inside folders (making them look as if they were a level deeper than they are)
|
"class": "sidebar_tree", change in Soda Dark 3.sublime-theme file |
This seems like a great use case for adding a User Theme customisation file to your local config. More info: https://github.com/buymeasoda/soda-theme/wiki/Theme-customisation I might add a config toggle and include it in the main theme, but trying to avoid to much deviation from the default Sublime approach. |
I'm having the same problem in ST3 3083. @SergiiD 's solution in a User Theme customization file removes the arrow icons, but how would I do it the other way around (keep the arrows and remove the folder icons)? |
Nevermind. Found it here: #188 (comment) |
@buymeasoda How about making the arrows a configurable? Unless of course, it's too specific a case for it. {
"class": "disclosure_button_control",
"settings": ["soda_hide_sidebar_arrows"],
"content_margin": [0, 8]
},
{
"class": "disclosure_button_control",
"settings": ["!soda_hide_sidebar_arrows"],
"content_margin": [8, 8]
} |
I have ST3 build 3062 and Soda v2014.05.07.06.11.27.
I'm getting both the arrows, which I want AND the little folder icons, which I don't. Like this:
How do I turn off the folder icons?
"soda_folder_icons": false,
doesn't do it.The text was updated successfully, but these errors were encountered: