summaryrefslogtreecommitdiff
path: root/ProcessList.h
diff options
context:
space:
mode:
authorloderunner <loderunner@63cc0a6c-1f0e-0410-841e-f6a342073da8>2012-02-02 23:45:40 +0000
committerloderunner <loderunner@63cc0a6c-1f0e-0410-841e-f6a342073da8>2012-02-02 23:45:40 +0000
commitbab825b6236300734fb1b6096fad032b763de8dd (patch)
tree7b5f7268c454336953b5b9b3442e3f38043767c2 /ProcessList.h
parentd6c781127e03a39158ac901966db959a1536810b (diff)
downloadhtop-bab825b6236300734fb1b6096fad032b763de8dd.tar.gz
BUGFIX: behavior of 'F' (follow) key was broken, also affecting the
persistence of mouse selections. Closes #3165065. git-svn-id: svn://svn.code.sf.net/p/htop/code/trunk@284 63cc0a6c-1f0e-0410-841e-f6a342073da8
Diffstat (limited to 'ProcessList.h')
-rw-r--r--ProcessList.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ProcessList.h b/ProcessList.h
index 719783b..d7a5ef9 100644
--- a/ProcessList.h
+++ b/ProcessList.h
@@ -92,7 +92,7 @@ typedef struct ProcessList_ {
UsersTable* usersTable;
Panel* panel;
- bool follow;
+ int following;
bool userOnly;
uid_t userId;
bool filtering;
@@ -183,6 +183,6 @@ ProcessField ProcessList_keyAt(ProcessList* this, int at);
void ProcessList_expandTree(ProcessList* this);
-void ProcessList_rebuildPanel(ProcessList* this, bool flags, bool follow, bool userOnly, uid_t userId, bool filtering, const char* incFilter);
+void ProcessList_rebuildPanel(ProcessList* this, bool flags, int following, bool userOnly, uid_t userId, bool filtering, const char* incFilter);
#endif