From c216fbd77f457e7b59f51503aee2fb915a9b3c7d Mon Sep 17 00:00:00 2001 From: Gustav Date: Wed, 13 Mar 2024 17:08:36 +0100 Subject: [PATCH] Add back scaling strokes --- libs/ride/src/ride/app.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ride/src/ride/app.cc b/libs/ride/src/ride/app.cc index 310d960..226d20a 100644 --- a/libs/ride/src/ride/app.cc +++ b/libs/ride/src/ride/app.cc @@ -122,8 +122,8 @@ struct RideApp : api::App keybind.add(*api::stroke_from_string("ctrl+q"), {"core.quit"}); keybind.add(*api::stroke_from_string("return"), {"doc.insert-newline"}); - // keybind.add(*stroke_from_string("ctrl+up"), {"scale.+"}); - // keybind.add(*stroke_from_string("ctrl+down"), {"scale.-"}); + keybind.add(*api::stroke_from_string("ctrl+j"), {"scale.+"}); + keybind.add(*api::stroke_from_string("ctrl+k"), {"scale.-"}); auto add_move_select = [this](const std::string& stroke_name, const std::string& command) {