fix botched copy-n-paste from r40978
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@54064 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -905,10 +905,12 @@ void wxMenuItem::SetText( const wxString& str )
|
|||||||
{
|
{
|
||||||
// if the accelerator was taken from a stock ID, just get it back from GTK+ stock
|
// if the accelerator was taken from a stock ID, just get it back from GTK+ stock
|
||||||
if (wxGetStockGtkAccelerator(stockid, &accel_mods, &accel_key))
|
if (wxGetStockGtkAccelerator(stockid, &accel_mods, &accel_key))
|
||||||
gtk_widget_remove_accelerator( GTK_WIDGET(m_menuItem),
|
gtk_widget_add_accelerator( GTK_WIDGET(m_menuItem),
|
||||||
m_parentMenu->m_accel,
|
"activate",
|
||||||
accel_key,
|
m_parentMenu->m_accel,
|
||||||
accel_mods );
|
accel_key,
|
||||||
|
accel_mods,
|
||||||
|
GTK_ACCEL_VISIBLE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user