diff options
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
| -rw-r--r-- | gtk/ScintillaGTK.cxx | 18 | 
1 files changed, 3 insertions, 15 deletions
| diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index b7d3fd22a..960f17f79 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1398,21 +1398,9 @@ std::string ScintillaGTK::CaseMapString(const std::string &s, int caseMapping) {  }  int ScintillaGTK::KeyDefault(int key, int modifiers) { -	if (!(modifiers & SCI_CTRL) && !(modifiers & SCI_ALT)) { -		if (key < 256) { -			NotifyKey(key, modifiers); -			return 0; -		} else { -			// Pass up to container in case it is an accelerator -			NotifyKey(key, modifiers); -			return 0; -		} -	} else { -		// Pass up to container in case it is an accelerator -		NotifyKey(key, modifiers); -		return 0; -	} -	//Platform::DebugPrintf("SK-key: %d %x %x\n",key, modifiers); +	// Pass up to container in case it is an accelerator +	NotifyKey(key, modifiers); +	return 0;  }  void ScintillaGTK::CopyToClipboard(const SelectionText &selectedText) { | 
