Skip to content
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

Icon problems #206

Open
azbatuk opened this issue Nov 30, 2016 · 7 comments
Open

Icon problems #206

azbatuk opened this issue Nov 30, 2016 · 7 comments

Comments

@azbatuk
Copy link

azbatuk commented Nov 30, 2016

Hello,
I've been using Peel with Sublime Text 3, and been having icon problems (file and folder icons on the sidebar and also tab icons) since Spacegray updated to 1.3.1 a couple days ago.
Thanks.
scr

@zuern
Copy link

zuern commented Dec 5, 2016

I have the same issue with Sublime Text 3. It seems to affect the code folding icons as well as the folder browser
screenshot_20161205_121009

@Gr1N
Copy link

Gr1N commented Dec 13, 2016

+1 same issue

1 similar comment
@gpressutto5
Copy link

+1 same issue

@RealJTG
Copy link

RealJTG commented Jan 16, 2017

Should to be fixed now.
There were some minor changes in Spacegray theme here SublimeText/Spacegray@a3cf933:

Before:

"layer0.texture": "Theme - Spacegray/Spacegray/close.png",

After:

"layer0.texture": "Theme - Spacegray/assets/close.png",

While not merged, you can temporary remove package and unpack fixed package in ~/.config/sublime-text-3/Packages/Dayle Rees Color Schemes.

@aristotele
Copy link

I can now see the correct folder icon in the sidebar but still show the default folder icon next to it.
image

@aristotele
Copy link

aristotele commented Nov 30, 2018

I've just figured it out. Simply put this snippet in theme configuration.

// sidebar icon folder closed
{
	"class": "icon_folder",
	"layer0.texture": "Theme - Spacegray/assets/folder-closed.png",
	"layer0.tint":[211, 100, 59],
	"content_margin": [9, 8]
},
// sidebar icon folder opened
{
	"class": "icon_folder",
	"parents": [{"class": "tree_row", "attributes": ["expanded"]}],
	"layer0.texture": "Theme - Spacegray/assets/folder-open.png",
	"layer0.tint":[211, 100, 59],
	"content_margin": [9, 8]
},
// sidbar arrows (down = group opend, right = group closed)
{
	"class": "disclosure_button_control",
    "content_margin": [0,0],	// set 8,8 if want to see the arrows
    "layer0.texture": "Theme - Spacegray/assets/fold-down.png",
    "layer0.tint": [171, 60, 19], // 02
    "layer0.opacity": 1,
    "layer0.inner_margin": 0
},
{
	"class": "disclosure_button_control",
	"attributes": ["expanded"],
	"layer0.texture": "Theme - Spacegray/assets/fold-right.png"
},

Result in this:

image

@icemancast
Copy link

icemancast commented Nov 17, 2020

I have the same issue on mine now. How did you fix yours?

Screen Shot 2020-11-17 at 11 12 54 AM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants