diff --git a/addon/globalPlugins/clipContentsDesigner/__init__.py b/addon/globalPlugins/clipContentsDesigner/__init__.py
index 2c5a9b62..939efbb5 100644
--- a/addon/globalPlugins/clipContentsDesigner/__init__.py
+++ b/addon/globalPlugins/clipContentsDesigner/__init__.py
@@ -259,7 +259,8 @@ def copy(self):
 		if isinstance(treeInterceptor,treeInterceptorHandler.DocumentTreeInterceptor) and not treeInterceptor.passThrough:
 			treeInterceptor.script_copyToClipboard(None)
 		else:
-			KeyboardInputGesture.fromName("control+c").send()
+			keyName = "control+c" if not isArabicKeyboardLayout() else u"control+ؤ"
+			KeyboardInputGesture.fromName(keyName).send()
 
 	def confirmCopy(self):
 		text = self.getSelectedText()