summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-01 22:03:30 +0100
committercgzones <cgzones@googlemail.com>2021-01-04 23:12:43 +0100
commiteb6f8d569d2758d3dea8cffdaaa10955301ad763 (patch)
tree5390c93193edbcdd79d6dfbf50111c2de50824ea
parent8c8149d146f744b2c0c64b80ba9220bd464de013 (diff)
Action: drop resize callback
The supervising ScreenManager will resize all Panels
-rw-r--r--Action.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/Action.c b/Action.c
index dd12e297..32cea103 100644
--- a/Action.c
+++ b/Action.c
@@ -189,12 +189,6 @@ static Htop_Reaction actionSetSortColumn(State* st) {
return reaction | HTOP_REFRESH | HTOP_REDRAW_BAR | HTOP_UPDATE_PANELHDR;
}
-static Htop_Reaction actionResize(State* st) {
- clear();
- Panel_resize(st->panel, COLS, LINES - (st->panel->y) - 1);
- return HTOP_REDRAW_BAR;
-}
-
static Htop_Reaction actionSortByPID(State* st) {
return Action_setSortKey(st->settings, PID);
}
@@ -682,5 +676,4 @@ void Action_setBindings(Htop_Action* keys) {
keys[KEY_F(10)] = actionQuit;
keys[KEY_F(18)] = actionExpandCollapseOrSortColumn;
keys[KEY_RECLICK] = actionExpandOrCollapse;
- keys[KEY_RESIZE] = actionResize;
}

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