Skip to content

Commit

Permalink
fix for open folder icon on ST2
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiewilson committed Aug 26, 2014
1 parent ff86593 commit 56abf4b
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt",
"1.3.2": "messages/1.3.2.txt",
"1.3.3": "messages/1.3.3.txt"
"1.3.3": "messages/1.3.3.txt",
"1.3.4": "messages/1.3.4.txt"
}
19 changes: 19 additions & 0 deletions messages/1.3.4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
=====================================
1.3.4 Fix for Open Folder Icon on ST2
=====================================

New Installation Instructions!

{
"theme": "predawn.sublime-theme",
"color_scheme": "Packages/Predawn/predawn.tmTheme"
}

FOR ALL DEV BUILDS 3062+ use,

{
"theme": "predawn-DEV.sublime-theme",
"color_scheme": "Packages/Predawn/predawn.tmTheme"
}

*** IMPORTANT - MAKE SURE TO RESTART SUBLIME AFTER INSTALLING AND ACTIVATING PREDAWN ***
14 changes: 10 additions & 4 deletions predawn.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -571,14 +571,20 @@
"class": "disclosure_button_control",
"content_margin": [8, 8],
"layer0.texture": "Predawn/assets/folder.png",
"layer0.opacity": 1.0
"layer1.texture": "Predawn/assets/folder_open.png",
"layer0.opacity": 1.0,
"layer1.opacity": 0
},

// Sidebar file close hover

{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row", "attributes": ["expanded"]}],
"layer0.texture": "Predawn/assets/folder_open.png",
"layer0.opacity": 1.0
"attributes": ["expanded"],
"layer0.opacity": 0,
"layer1.opacity": 1.0
},

// Sidebar file icons

{
Expand Down

0 comments on commit 56abf4b

Please sign in to comment.