diff options
author | hobbs <hobbs> | 2004-05-03 23:23:42 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-05-03 23:23:42 (GMT) |
commit | 162fff4cc2568413ef5612360c1882c0a6726b07 (patch) | |
tree | 24b95de3649b4f79162ee5bcf244300f7d17e2e3 /win/tkWinMenu.c | |
parent | 8ed8369046f67b8ccdc3cd88a1a3db545024748b (diff) | |
download | tk-162fff4cc2568413ef5612360c1882c0a6726b07.zip tk-162fff4cc2568413ef5612360c1882c0a6726b07.tar.gz tk-162fff4cc2568413ef5612360c1882c0a6726b07.tar.bz2 |
* win/tkWinMenu.c, unix/tkUnixMenu.c (DrawMenuEntryLabel): place
images of compound menu entries in indicator space if not a radio
of checkbutton. [Bug #756952] (eserte)
Diffstat (limited to 'win/tkWinMenu.c')
-rw-r--r-- | win/tkWinMenu.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/win/tkWinMenu.c b/win/tkWinMenu.c index 0d89cbe..aea7d73 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.21.2.1 2004/05/03 22:40:58 hobbs Exp $ + * RCS: @(#) $Id: tkWinMenu.c,v 1.21.2.2 2004/05/03 23:23:42 hobbs Exp $ */ #define OEMRESOURCE @@ -1976,10 +1976,24 @@ DrawMenuEntryLabel( break; } case COMPOUND_LEFT: { + /* + * The standard image position on Windows is in the indicator + * space to the left of the entries, unless this entry is a + * radio|check button because then the indicator space will + * be used. + */ textXOffset = imageWidth + 2; textYOffset = 0; imageXOffset = 0; imageYOffset = 0; + if ((mePtr->type != CHECK_BUTTON_ENTRY) + && (mePtr->type != RADIO_BUTTON_ENTRY)) { + textXOffset -= indicatorSpace; + if (textXOffset < 0) { + textXOffset = 0; + } + imageXOffset = -indicatorSpace; + } break; } case COMPOUND_RIGHT: { |