[Konsole-devel] [Bug 280637] [RFE] allow users to control how much shift+PageUp scrolls: half page or full page?

Jekyll Wu adaptee at gmail.com
Sun Feb 26 12:04:32 UTC 2012


https://bugs.kde.org/show_bug.cgi?id=280637





--- Comment #3 from Jekyll Wu <adaptee gmail com>  2012-02-26 12:04:31 ---
Before this issue is finally solved or rejected, you can make local change to
the code of konsole to get preferred behavior:

// konsole/src/ScreenWindow.cpp
void ScreenWindow::scrollBy(RelativeScrollMode mode , int amount)
{
    if (mode == ScrollLines) {
        scrollTo(currentLine() + amount);
    } else if (mode == ScrollPages) {
        //scrollTo(currentLine() + amount * (windowLines() / 2));
        scrollTo(currentLine() + amount * (windowLines()));
    }
}

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the konsole-devel mailing list