From 7117e82e07b6d10c7926aad2fbd92fec654d108e Mon Sep 17 00:00:00 2001 From: joten Date: Tue, 25 Mar 2014 20:47:07 +0100 Subject: [PATCH] Fixed bug regarding the special character '&' The special character '&' would underline the next letter and not be shown. --- src/Bar.ahk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Bar.ahk b/src/Bar.ahk index 76b0f0f..bd1b61d 100644 --- a/src/Bar.ahk +++ b/src/Bar.ahk @@ -489,6 +489,7 @@ Bar_updateTitle() StringLeft, title, aWndTitle, i title := " " . title . " ... " } + StringReplace, title, title, &, &&, All ;; Special character '&', which would underline the next letter. i := Config_viewCount + 2 Loop, % Manager_monitorCount