From fbf41bf142a0d56cf05e820d290670e56cf2d046 Mon Sep 17 00:00:00 2001 From: trilader Date: Sat, 28 Nov 2020 15:09:53 +0100 Subject: [PATCH] Disable action to show video description for now --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index c392c87..5c2ed6e 100644 --- a/main.cpp +++ b/main.cpp @@ -526,7 +526,7 @@ int main() {TERMPAINT_EV_CHAR, "W", 0, action_mark_all_videos_watched, "Mark channel as watched"}, {TERMPAINT_EV_CHAR, "q", TERMPAINT_MOD_CTRL, [&](){ exit = true; }, "Quit"}, - {TERMPAINT_EV_KEY, "Space", 0, action_show_video_detail, "Show video details"}, + //{TERMPAINT_EV_KEY, "Enter", 0, action_show_video_detail, "Show video details"}, {TERMPAINT_EV_KEY, "ArrowUp", 0, action_select_prev_video, "Previous video"}, {TERMPAINT_EV_KEY, "ArrowDown", 0, action_select_next_video, "Next video"}, {TERMPAINT_EV_KEY, "PageUp", 0, action_select_prev_video_page, "Previous video page"},