Hello,

I hope I'm not too late and 2.5.17 still not released. Today I found a
bug in menu code: 'CopyMenuStyle' don't copies recently introduced
'TitleColorset'.  Attached patch fixes this.

Happy release & have a good time everyone

-- 
Serge Koksharov, Free Software user & supporter
GPG public key ID: 0x3D330896 (pgp.mit.edu)
Key fingerprint: 5BC4 0475 CB03 6A31 0076  82C2 C240 72F0 3D33 0896
diff -Naur fvwmCVS-orig/ChangeLog fvwmCVS-fixed/ChangeLog
--- fvwmCVS-orig/ChangeLog      2006-07-17 02:45:54.000000000 +0400
+++ fvwmCVS-fixed/ChangeLog     2006-07-17 13:52:02.000000000 +0400
@@ -1,3 +1,8 @@
+2006-07-17  Serge Koksharov  <gentoosiast dog yandex dot ru>
+
+       * fvwm/menustyle.c (menustyle_copy):
+       Now 'TitleColorset' also copied by 'CopyMenuStyle' command.
+
 2006-07-16  Viktor Griph  <[EMAIL PROTECTED]>
 
        * fvwm/fvwm.1.in (COMMAND EXPANSION):
diff -Naur fvwmCVS-orig/fvwm/menustyle.c fvwmCVS-fixed/fvwm/menustyle.c
--- fvwmCVS-orig/fvwm/menustyle.c       2006-07-17 02:45:52.000000000 +0400
+++ fvwmCVS-fixed/fvwm/menustyle.c      2006-07-17 13:39:14.000000000 +0400
@@ -1766,6 +1766,9 @@
        /* MenuColorset */
        ST_HAS_GREYED_CSET(destms) = ST_HAS_GREYED_CSET(origms);
        ST_CSET_GREYED(destms) = ST_CSET_GREYED(origms);
+       /* TitleColorset */
+       ST_HAS_TITLE_CSET(destms) = ST_HAS_TITLE_CSET(origms);
+       ST_CSET_TITLE(destms) = ST_CSET_TITLE(origms);
        /* SelectOnRelease */
        ST_SELECT_ON_RELEASE_KEY(destms) = ST_SELECT_ON_RELEASE_KEY(origms);
        /* PopdownImmediately */

Reply via email to