From 83925a927d0fd12f6ce88724f2dccc92f7058930 Mon Sep 17 00:00:00 2001 From: T1ti <40864460+T1ti@users.noreply.github.com> Date: Thu, 25 Jul 2024 00:02:24 +0200 Subject: [PATCH] cleanup some keybinds --- src/noggit/ui/Help.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/noggit/ui/Help.cpp b/src/noggit/ui/Help.cpp index 5535b631..da989c7b 100755 --- a/src/noggit/ui/Help.cpp +++ b/src/noggit/ui/Help.cpp @@ -109,7 +109,8 @@ namespace Noggit generate_hotkey_row({FontNoggit::o, FontNoggit::p}, "\aor\aSlower / Faster movement", adjust_layout); generate_hotkey_row({FontNoggit::b, FontNoggit::n}, "\aor\aSlower / Faster time", adjust_layout); generate_hotkey_row({FontNoggit::j}, "\aPause time", adjust_layout); - generate_hotkey_row({FontNoggit::shift, FontNoggit::plus, FontNoggit::minus}, "\a+\aor\aFog distance when no model is selected", adjust_layout); + // NYI + // generate_hotkey_row({FontNoggit::shift, FontNoggit::plus, FontNoggit::minus}, "\a+\aor\aFog distance when no model is selected", adjust_layout); auto flag_widget (new QWidget (this)); auto flag_layout (new QFormLayout (flag_widget)); @@ -118,7 +119,7 @@ namespace Noggit holes_label->setStyleSheet(header_style); flag_layout->addRow(holes_label); - generate_hotkey_row({FontNoggit::shift, FontNoggit::lmb}, "\a+\aFog distance when no model is selected", flag_layout); + generate_hotkey_row({FontNoggit::shift, FontNoggit::lmb}, "\a+\aClear hole", flag_layout); generate_hotkey_row({FontNoggit::ctrl, FontNoggit::lmb}, "\a+\aAdd hole", flag_layout); generate_hotkey_row({FontNoggit::t}, "\aRemove all holes on ADT", flag_layout); generate_hotkey_row({FontNoggit::alt, FontNoggit::t}, "\a+\aRemove all ground on ADT", flag_layout);