aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorKrow Savcik <krow@savcik.xyz>2024-02-16 18:32:54 +0200
committerKrow Savcik <krow@savcik.xyz>2024-02-16 18:32:54 +0200
commitae4f6cc7e9b567bcecc7fb812aa4ab5058aca379 (patch)
tree97fc380396bd4413c89d3608d45a0bdf25283a4e /config.def.h
parentdc9a97424933e43b69996c0cbab8ecc01cfe72d0 (diff)
improved: layer interface
New layer is added above the selected one rather than being added on top.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index bce7925..9ec9173 100644
--- a/config.def.h
+++ b/config.def.h
@@ -29,6 +29,7 @@ static Key keys[] = {
{KMOD_RSHIFT, SDLK_o, user_canvas_open, {.s = NULL}},
{KMOD_RSHIFT, SDLK_e, user_canvas_export_png, {.v = NULL}},
{KMOD_RSHIFT, SDLK_i, user_canvas_import_png, {.s = NULL}},
+ {0, SDLK_j, user_layer_add, {.v = NULL}},
{0, SDLK_b, user_tool_change, {.i = 0}},
{0, SDLK_e, user_tool_change, {.i = 1}},
{0, SDLK_f, user_tool_change, {.i = 2}},