diff --git a/aegisub/src/dialog_style_manager.cpp b/aegisub/src/dialog_style_manager.cpp index bc35ae8ad..9082d2efe 100644 --- a/aegisub/src/dialog_style_manager.cpp +++ b/aegisub/src/dialog_style_manager.cpp @@ -1057,11 +1057,7 @@ void DialogStyleManager::OnKeyDown(wxKeyEvent &event) { case 'C' : case 'c' : -#ifdef __APPLE__ if (event.CmdDown()) { -#else - if (event.ControlDown()) { -#endif if (wxWindow::FindFocus()==CurrentList) { CopyToClipboard(CurrentList,styleMap); } @@ -1073,11 +1069,7 @@ void DialogStyleManager::OnKeyDown(wxKeyEvent &event) { case 'V' : case 'v' : -#ifdef __APPLE__ if (event.CmdDown()) { -#else - if (event.ControlDown()) { -#endif if (wxWindow::FindFocus()==CurrentList) { PasteToCurrent(); }