diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 45a9c397be..4923f4b80b 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -1792,13 +1792,15 @@ void CFrame::UpdateGUI() { m_ToolBar->DeleteTool(IDM_PLAY); m_ToolBar->InsertTool(position, IDM_PLAY, _("Pause"), m_Bitmaps[Toolbar_Pause], - wxNullBitmap, wxITEM_NORMAL, _("Pause")); + WxUtils::CreateDisabledButtonBitmap(m_Bitmaps[Toolbar_Pause]), + wxITEM_NORMAL, _("Pause")); } else { m_ToolBar->DeleteTool(IDM_PLAY); m_ToolBar->InsertTool(position, IDM_PLAY, _("Play"), m_Bitmaps[Toolbar_Play], - wxNullBitmap, wxITEM_NORMAL, _("Play")); + WxUtils::CreateDisabledButtonBitmap(m_Bitmaps[Toolbar_Play]), + wxITEM_NORMAL, _("Play")); } m_ToolBar->Realize(); }