xaizek / pms (License: GPLv3+) (since 2018-12-07)
Older version of Practical Music Search written in C++.
Commit c3505168b035febef0dd7df86a3e71f888abe460

Fix scroll logic bug.
Author: Kim Tore Jensen
Author date (UTC): 2014-09-28 07:29
Committer name: Kim Tore Jensen
Committer date (UTC): 2014-09-28 07:29
Parent(s): b3f4a9725531b5efca3dd33ac377a19462f71df5
Signing key:
Tree: 3d0d646d2a09611caab35d0c0e542fce86e235dd
File Lines added Lines deleted
src/window.c 1 1
File src/window.c changed (mode: 100644) (index 3131ef8..6639af6)
... ... int window_scroll(window_t * window, long delta) {
38 38 // TODO: beep? // TODO: beep?
39 39 } }
40 40 } else if (delta < 0) { } else if (delta < 0) {
41 npos = window->position - delta - 2;
41 npos = window->position + delta - 1;
42 42 if (npos < 0) { if (npos < 0) {
43 43 delta = -window->position; delta = -window->position;
44 44 // TODO: beep? // TODO: beep?
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/pms

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/pms

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master