answered
2018-08-11 13:05:52 +0200
@t4k1t - if this did work, it doesn't work any more. Strange that a settings.ini file makes no difference when edited, I have no idea why.
@jakob
So, I have come up with another solution. Using Terminal, navigate to;
/usr/share/fingertern/Main.qml
Look for line 90
, it looks like this;
color: bellTimer.running ? "#ffffff" : bgcolor
Change the hex colour letters of 'ffffff' to 6 x zero; '000000', so it looks like this;
color: bellTimer.running ? "#000000" : bgcolor
or simply,
color: bgcolor
also, as suggested by Mohjive, a subtle shade to keep visual bell visible but in a dimmer shade,
color: bellTimer.running ? "#303030" : bgcolor
Save your changes and open FingerTerm again to test, the 'visual bell' should no longer flash.
Somewhat related; more on FingerTerm stuff by me, here;
https://together.jolla.com/question/102504/allow-setting-background-colour-of-fingerterm/
I'd assume that that is the visible bell. It should be there by default, but an idea is that the user should be able to disable it. That it goes away after the About dialog seems to me is the real bug.
Mohjive ( 2014-01-13 00:14:44 +0200 )edit