diff --git a/css/pixel-editor.scss b/css/pixel-editor.scss
index cfdfea1..305cccc 100644
--- a/css/pixel-editor.scss
+++ b/css/pixel-editor.scss
@@ -40,6 +40,33 @@ body {
/* Disable Android and iOS callouts*/
}
+#help {
+ max-height: 500px;
+ overflow-y:scroll;
+
+ li {
+ margin-top:5px;
+ }
+
+ // Fancy scrollbar
+ &::-webkit-scrollbar {
+ background: #232125;
+ width: 0.5em;
+ }
+ &::-webkit-scrollbar-track {
+ margin-top: -0.125em;
+ width: 0.5em;
+ }
+ &::-webkit-scrollbar-thumb {
+ background: #332f35;
+ border-radius: 0.25em;
+ border: solid 0.125em #232125; //same color as scrollbar back to fake padding
+ }
+ &::-webkit-scrollbar-corner {
+ background: #232125;
+ }
+}
+
#layer-properties-menu {
visibility: hidden;
margin: 0;
diff --git a/views/pixel-editor.hbs b/views/pixel-editor.hbs
index ce9e8ef..f7c5e5a 100644
--- a/views/pixel-editor.hbs
+++ b/views/pixel-editor.hbs
@@ -138,18 +138,18 @@
-
-
-
-
-
-
+
+
+
+
+
+
@@ -532,19 +532,38 @@
Hotkeys
- - Pencil: B or 1
- - Fill: F or 2
- - Eyedropper: E or 3
- - Pan: P or M or 4
- - Zoom: Z or 5
- - Undo: Ctrl + Z
- - Redo: Ctrl + Y or Ctrl + Alt + Z
+ - Pencil: B or 1
+ - Eraser: R
+ - Rectangle: U
+ - Line: L
+ - Fill: F or 2
+ - Eyedropper: E or 3
+ - Pan: P or M or 4
+ - Zoom: Z or 5
+ - Undo: Ctrl + Z
+ - Redo: Ctrl + Y or Ctrl + Alt + Z
+ - Rectangular selection: M
Mouse Shortcuts
- - Alt + Click - Eyedropper
- - Space + Click - Pan
- - Alt + Scroll Wheel - Zoom
+ - Eyedropper: Alt + Click
+ - Pan: Space + Click
+ - Zoom: Alt + Scroll Wheel
+
+ Layers
+
+ - {{svg "visible.svg" width="15" height="15" class = "default-icon"}}: show / hide layer
+ - {{svg "lockedpadlock.svg" width="15" height="15" class = "default-icon"}}: lock / unlock layer, when a layer is locked it's not possible to draw on it
+ - Right click on a layer to open the menu:
+
+ - Rename: change the name of the layer
+ - Duplicate: duplicate the layer
+ - Delete: delete the layer (doesn't work if there's only one layer)
+ - Merge below: merges the selected the layer with the one below it
+ - Flatten visible: merges all the visible layers
+ - Flatten all: merges all the layers
+
+