Re: FVWM: Possible bug: Jumping pointer in Darktable
Stefan Klinger <[email protected]>
| Newsgroups | gmane.comp.window-managers.fvwm |
|---|---|
| Message-ID | <20181109104722.GA16981@tauhou> |
Dan Espen (2018-Nov-08, excerpt): > Stefan Klinger <[email protected]> writes: > > > I'll be offline for the rest of today (8h driving, yay), so no need to > > hurry... > > > > Dan Espen (2018-Nov-07, excerpt): > >> >> FvwmCommand 'mouse 1 A 4 Beep' > > [...] > >> Fvwm should only Beep when the modifier key is held down. > > > > That's what it does, sorry, should have been more clear about this. > > > >> So, maybe I'm not doing the right thing to see the problem. > >> I've opened darktable, > > > > btw. which Version? I'm using the master branch, i.e., last time I've > > checked out was > > > > $ darktable --version > > this is darktable 2.5.0+767~gabecd987b > > $ darktable --version > this is darktable darktable-2.4.4-1.fc27 Ok, I've been `git bisect`ing darktable this morning. I'm using a script `retry` to automate the repeated compilation (attached). The result being $ cp /home/sk/foto/20180923-000/DSC_3932.NEF ~/tmp $ cd ${darktable_source} $ git clean -xdf $ ~/prg/darktable-tools/retry master # bad $ ~/prg/darktable-tools/retry release-2.4.4 # good [...] $ git bisect good Bisecting: 2 revisions left to test after this (roughly 1 step) [92c1733369600cb034852676124026479aa69c83] fix cross position $ ~/prg/darktable-tools/retry $ git bisect bad Bisecting: 0 revisions left to test after this (roughly 0 steps) [35e88586d70ab87b12e6f42cbeb402f76e358f18] cross follow mouse $ ~/prg/darktable-tools/retry $ git bisect good 92c1733369600cb034852676124026479aa69c83 is the first bad commit commit 92c1733369600cb034852676124026479aa69c83 Author: edgardoh <[email protected]> Date: Sat Sep 29 07:31:06 2018 -0300 fix cross position :040000 040000 b76bf5ce67082ae9bf7772a447921dc05ca07c32 6e0e84d8e2ef961f8cf6ae7aaf1f541f1c8d879b M src I do not understand this code, but I've posted this info on darktable's bucktracker [1]. Now I'll start bisecting FVWM... ____________________ [1] https://redmine.darktable.org/issues/12387#note-9 -- http://stefan-klinger.de o/X I prefer receiving plain text messages, not exceeding 32kB. /\/ \
retry
(text/plain, 506 B)
#!/bin/bash
set -u -e -C;
shopt -s nullglob;
cd "${HOME}/source/dt/";
prefix="${HOME}/tmp/dt"
disable=(flickr libsecret kwallet unity tethering)
if test "${1-}"; then git co "$1" || return 1; fi;
git submodule update --recursive || return 1
./build.sh -j "$(nproc)" --prefix "$prefix" "${disable[@]/#/--disable-}" --buildtype Release || return 1
rm -rf "$prefix"
cmake --build build --target install -- -j6 || return 1
"${prefix}/bin/darktable" --library "${prefix}/dummy-library" ~/tmp/DSC_3932.NEF