Control: tag -1 patch
Hi,
> I'm afraid I'm not a C++ developer so cannot comment on the code internals
> or the proposed patch. I am however familiar with deb packaging and can
> apt-get source and rebuild a patched package myself if that would help.
upstream has proposed the following fix, it seems you had nailed down the
problem..
--- a/gtk/Application.cc
+++ b/gtk/Application.cc
@@ -1270,7 +1270,7 @@ void Application::Impl::on_prefs_changed(tr_quark const
key)
{
bool const b = gtr_pref_flag_get(key);
tr_sessionUseAltSpeed(tr, b);
- gtr_action_set_toggled(std::string(tr_quark_get_string_view(key)),
b);
+ gtr_action_set_toggled("alt-speed-enabled", b);
break;
}
It would be great if you can confirm it fixes this issue.
Thanks,
Alex