powertop: patch to fix vertical scrolling

From mailing list (thanks!).
This commit is contained in:
Will Dietz 2019-03-21 18:15:58 -05:00
parent ea34ad0e43
commit a5a26cfa86
2 changed files with 17 additions and 1 deletions

View file

@ -20,7 +20,10 @@ stdenv.mkDerivation rec {
url = "https://git.alpinelinux.org/cgit/aports/plain/main/powertop/strerror_r.patch?id=3b9214d436f1611f297b01f72469d66bfe729d6e";
sha256 = "1kzddhcrb0n2iah4lhgxwwy4mkhq09ch25jjngyq6pdj6pmfkpfw";
}
);
) ++ [
# Fix vertical scrolling, see: https://lists.01.org/pipermail/powertop/2019-March/002046.html
./fix-vertical-scrolling.patch
];
postPatch = ''
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"

View file

@ -0,0 +1,13 @@
diff --git a/src/display.cpp b/src/display.cpp
index 07227c5..7b3a7a2 100644
--- a/src/display.cpp
+++ b/src/display.cpp
@@ -244,7 +244,7 @@ void cursor_down(void)
w = tab_windows[tab_names[current_tab]];
if (w) {
if (w->ypad_pos < 1000) {
- if (tab_names[current_tab] == "Tunables" || "WakeUp") {
+ if (tab_names[current_tab] == "Tunables" || tab_names[current_tab] == "WakeUp") {
if ((w->cursor_pos + 7) >= LINES) {
prefresh(w->win, ++w->ypad_pos, w->xpad_pos,
1, 0, LINES - 3, COLS - 1);