]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/accelcmn.cpp
Fix history in wxWebViewIE when using a custom file scheme.
[wxWidgets.git] / src / common / accelcmn.cpp
index 4d05f3de4df865e286bec50e7d218a7a5b5b5164..f52fc05de373665b0de60a270557c4ecc8051693 100644 (file)
@@ -307,7 +307,7 @@ wxString wxAcceleratorEntry::ToString() const
     int flags = GetFlags();
     if ( flags & wxACCEL_ALT )
         text += _("Alt+");
-    if ( flags & wxACCEL_CTRL )
+    if ( flags & (wxACCEL_CTRL | wxACCEL_CMD) )
         text += _("Ctrl+");
     if ( flags & wxACCEL_SHIFT )
         text += _("Shift+");