tackme
tackme
## General Information - **MEGA Version:** 6.6 (433) - **OS Version(s):** Android 12 - **Devices/Simulators:** Pixel 5 - **Reproducible? (Yes/No):** Yes ## What happened? A large number of image files...
If 'microscope' is installed, the process of recalculating metrics asynchronously on save will not work.
Allow to change the message in the CodeLens with option. A metrics value can be embedded by using variable: `$PCT$`, `$VAL$` message example: > simple enough ($PCT$) > average ($VAL$)
Example: ```csharp public void Sample(string input) { if (string.IsNullOrEmpty(input)) +1 { return; } foreach (var c in input) +1 { if (int.TryParse(c.ToString, out var _)) +2 { Console.WriteLine("Number"); } else...