You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Maybe check out https://docs.microsoft.com/en-us/windows/desktop/controls/embed-nonbutton-controls-in-toolbars to create counter within toolbar as alternative?
@@ -601,6 +631,22 @@ public static string GetCurrentLanguage() // Code::Stats
601
631
{
602
632
switch(detectionMethod)
603
633
{
634
+
caseConstants.DetectionType.CUSTOM_MAPPING:
635
+
if(!String.IsNullOrWhiteSpace(extension))
636
+
{
637
+
try
638
+
{
639
+
language=customExtensionMapping[extension];
640
+
found=true;
641
+
}
642
+
catch(KeyNotFoundException)
643
+
{
644
+
Logger.Debug("Extension \""+extension+"\" is not found in custom extension mappings file.");
0 commit comments