1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-15 05:16:59 +02:00

Fix analytics not counting applying ROT13 on non-editable text

This commit is contained in:
2018-06-19 21:35:35 +02:00
parent c7279eaa34
commit bd2c43e1f4

@@ -196,6 +196,7 @@ namespace TweetDuck.Core.Handling{
case MenuReadApplyROT13: case MenuReadApplyROT13:
string selection = parameters.SelectionText; string selection = parameters.SelectionText;
control.InvokeAsyncSafe(() => FormMessage.Information("ROT13", StringUtils.ConvertRot13(selection), FormMessage.OK)); control.InvokeAsyncSafe(() => FormMessage.Information("ROT13", StringUtils.ConvertRot13(selection), FormMessage.OK));
control.InvokeAsyncSafe(analytics.AnalyticsFile.UsedROT13.Trigger);
return true; return true;
case MenuSearchInBrowser: case MenuSearchInBrowser: