Merge pull request #259 from NavigationHazard/main

Added Request - Arrow only after use of "f" when filtering processes
This commit is contained in:
Jakob P. Liljenberg 2022-02-08 11:01:53 +01:00 committed by GitHub
commit 59a1868ce6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -289,11 +289,15 @@ namespace Input {
bool no_update = true;
bool redraw = true;
if (filtering) {
if (key == "enter") {
if (key == "enter" or key == "down") {
Config::set("proc_filter", Proc::filter.text);
Config::set("proc_filtering", false);
old_filter.clear();
}
old_filter.clear();
if(key == "down"){
process("down");
return;
}
}
else if (key == "escape" or key == "mouse_click") {
Config::set("proc_filter", old_filter);
Config::set("proc_filtering", false);