summaryrefslogtreecommitdiffstats
path: root/MainPanel.c
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2022-03-25 14:51:14 +0100
committerDaniel Lange <DLange@git.local>2022-03-25 14:51:14 +0100
commitc6f946edd259e4222d6910d16ceaa5db60972819 (patch)
tree4bf4f5c84064664c22a98cd84eca7b140b318c18 /MainPanel.c
parenta2ca7583a9ba2e57eb9e9316aad52c9248aae092 (diff)
Improve MainPanel Label on active inc filter (Filter <-> FILTER)
Diffstat (limited to 'MainPanel.c')
-rw-r--r--MainPanel.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/MainPanel.c b/MainPanel.c
index aeabe753..44915dfd 100644
--- a/MainPanel.c
+++ b/MainPanel.c
@@ -24,9 +24,10 @@ in the source distribution for its full text.
static const char* const MainFunctions[] = {"Help ", "Setup ", "Search", "Filter", "Tree ", "SortBy", "Nice -", "Nice +", "Kill ", "Quit ", NULL};
static const char* const MainFunctions_ro[] = {"Help ", "Setup ", "Search", "Filter", "Tree ", "SortBy", " ", " ", " ", "Quit ", NULL};
-void MainPanel_updateTreeFunctions(MainPanel* this, bool mode) {
+void MainPanel_updateLabels(MainPanel* this, bool list, bool filter) {
FunctionBar* bar = MainPanel_getFunctionBar(this);
- FunctionBar_setLabel(bar, KEY_F(5), mode ? "List " : "Tree ");
+ FunctionBar_setLabel(bar, KEY_F(5), list ? "List " : "Tree ");
+ FunctionBar_setLabel(bar, KEY_F(4), filter ? "FILTER" : "Filter");
}
static void MainPanel_pidSearch(MainPanel* this, int ch) {
@@ -122,7 +123,7 @@ static HandlerResult MainPanel_eventHandler(Panel* super, int ch) {
}
if (reaction & HTOP_REDRAW_BAR) {
- MainPanel_updateTreeFunctions(this, settings->ss->treeView);
+ MainPanel_updateLabels(this, settings->ss->treeView, this->state->pl->incFilter);
}
if (reaction & HTOP_RESIZE) {
result |= RESIZE;

© 2014-2024 Faster IT GmbH | imprint | privacy policy