colour-schemes icon indicating copy to clipboard operation
colour-schemes copied to clipboard

Icon problems

Open azbatuk opened this issue 8 years ago • 7 comments

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

azbatuk avatar Nov 30 '16 22:11 azbatuk

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

zuern avatar Dec 05 '16 17:12 zuern

+1 same issue

Gr1N avatar Dec 13 '16 20:12 Gr1N

+1 same issue

gpressutto5 avatar Dec 14 '16 16:12 gpressutto5

Should to be fixed now. There were some minor changes in Spacegray theme here https://github.com/kkga/spacegray/commit/a3cf933585ac8fbb67e02c350d9ee614642c17af:

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.

RealJTG avatar Jan 16 '17 15:01 RealJTG

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

aristotele avatar Nov 29 '18 18:11 aristotele

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

aristotele avatar Nov 30 '18 08:11 aristotele

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

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

icemancast avatar Nov 17 '20 17:11 icemancast