From ca2a53b6664fec1254366d8db65522d3a8fc4cb0 Mon Sep 17 00:00:00 2001 From: Mikhail Zolotukhin Date: Fri, 24 Sep 2021 01:16:15 +0300 Subject: [PATCH] fix: :bug: use correct key for floating layout --- README.md | 10 +++++----- src/controller/action.ts | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b3e57834..612093ba 100644 --- a/README.md +++ b/README.md @@ -79,10 +79,10 @@ section](TWEAKS.md). | Decrease Window Width | Meta + Ctrl + H | | Decrease Window Height | Meta + Ctrl + K | | | | -| Increase Master Area Window Count | _None_ | -| Decrease Master Area Window Count | _None_ | -| Increase Master Area Size | Meta + I | -| Decrease Master Area Size | Meta + D | +| Increase Master Area Window Count | Meta + I | +| Decrease Master Area Window Count | Meta + D | +| Increase Master Area Size | _None_ | +| Decrease Master Area Size | _None_ | | Push Window Into Master Area | Meta + Return | | | | | Toggle Active Window Floating | Meta + F | @@ -95,7 +95,7 @@ section](TWEAKS.md). | Set Three Column Layout | _None_ | | Set Spread Layout | _None_ | | Set Stair Layout | _None_ | -| Set Floating Layout | _None_ | +| Set Floating Layout | Meta + Shift + F | | Set Quarter Layout | _None_ | | | | | Rotate | Meta + R | diff --git a/src/controller/action.ts b/src/controller/action.ts index 98904fb8..9fcb0173 100644 --- a/src/controller/action.ts +++ b/src/controller/action.ts @@ -509,8 +509,8 @@ export class SetFloatingLayout extends SetCurrentLayout { super( engine, "FloatingLayout ", - "toggle_stair_layout", - "Toggle Stair Layout", + "toggle_float_layout", + "Toggle Floating Layout", "Meta+Shift+F" ); }