From aba060360603a9e57d02356db53b1f51c45738c8 Mon Sep 17 00:00:00 2001 From: qPCR4vir Date: Tue, 19 Apr 2016 00:16:36 +0200 Subject: [PATCH 1/2] 3 instead of 1 step by list wheel scroll --- source/gui/widgets/listbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/gui/widgets/listbox.cpp b/source/gui/widgets/listbox.cpp index 707eb339..3ff96ced 100644 --- a/source/gui/widgets/listbox.cpp +++ b/source/gui/widgets/listbox.cpp @@ -2289,9 +2289,9 @@ namespace nana index_pair target; if(upwards == false) - lister.forward(scroll.offset_y_dpl, 1, target); + lister.forward(scroll.offset_y_dpl, 3, target); // scheme ?? else - lister.backward(scroll.offset_y_dpl, 1, target); + lister.backward(scroll.offset_y_dpl, 3, target); if (target == scroll.offset_y_dpl) return false; From 526c6bc6ba35bd6b704d17e1fcce4dd738426524 Mon Sep 17 00:00:00 2001 From: qPCR4vir Date: Wed, 20 Apr 2016 01:52:25 +0200 Subject: [PATCH 2/2] still not merged with develop --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3e64fdb9..d7868e3e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,7 @@ matrix: - llvm-toolchain-precise before_install: - - git clone --depth=1 --branch=dev_nana_in_examples https://github.com/qPCR4vir/nana-demo.git nana-demo + - git clone --depth=1 --branch=hotfix-1.3 https://github.com/qPCR4vir/nana-demo.git nana-demo - export PATH="$HOME/bin:$PATH" - mkdir ~/bin - wget --no-check-certificate --no-clobber -O /tmp/tools/cmake https://cmake.org/files/v3.4/cmake-3.4.0-rc3-Linux-x86_64.sh || true