]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/menu.cpp
Found bug that skrewed up display wrt horizontal
[wxWidgets.git] / src / gtk / menu.cpp
index 3aff75731f46e46423cbfd97e14798e5c1399bb4..12185fcd39a2cc2dd809d405a2c44f5f6972ee0e 100644 (file)
@@ -641,9 +641,10 @@ wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
 #if (GTK_MINOR_VERSION > 0)
     for ( const wxChar *pc = text.c_str(); *pc; pc++ )
     {
 #if (GTK_MINOR_VERSION > 0)
     for ( const wxChar *pc = text.c_str(); *pc; pc++ )
     {
-        if ( *pc == wxT('_') )
+        if ( *pc == wxT('_') || *pc == wxT('&') )
         {
         {
-            // this is the escape character for GTK+ - skip it
+            // '_' is the escape character for GTK+ and '&' is the one for
+            // wxWindows - skip both of them
             continue;
         }
 
             continue;
         }