summaryrefslogtreecommitdiffstats
path: root/win/tkWinMenu.c
diff options
context:
space:
mode:
authorericm <ericm>2000-07-28 17:37:23 (GMT)
committerericm <ericm>2000-07-28 17:37:23 (GMT)
commite16ace7494c18ca956b24fad670adf43fb0feba3 (patch)
tree9c803ffe374abd4d973033f86d91952391bfe731 /win/tkWinMenu.c
parentbd8aa1f448a8d403362dc23e6b8e14570945e272 (diff)
downloadtk-e16ace7494c18ca956b24fad670adf43fb0feba3.zip
tk-e16ace7494c18ca956b24fad670adf43fb0feba3.tar.gz
tk-e16ace7494c18ca956b24fad670adf43fb0feba3.tar.bz2
* win/tkWinMenu.c (ReconfigureWindowsMenu): Added MF_GRAYED bit
for disabled menu entries, to ensure that those which are drawn by the system are shown grayed (such as entries on menubars) [Bug: 4372].
Diffstat (limited to 'win/tkWinMenu.c')
-rw-r--r--win/tkWinMenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinMenu.c b/win/tkWinMenu.c
index 7dd0458..54d6c1e 100644
--- a/win/tkWinMenu.c
+++ b/win/tkWinMenu.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinMenu.c,v 1.11 2000/07/06 03:17:44 mo Exp $
+ * RCS: @(#) $Id: tkWinMenu.c,v 1.12 2000/07/28 17:37:24 ericm Exp $
*/
#define OEMRESOURCE
@@ -582,7 +582,7 @@ ReconfigureWindowsMenu(
*/
if (mePtr->state == ENTRY_DISABLED) {
- flags |= MF_DISABLED;
+ flags |= MF_DISABLED | MF_GRAYED;
}
/*