aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
diff options
context:
space:
mode:
authorAvi Weinstock <aweinstock314@gmail.com>2015-07-17 13:45:46 -0400
committerAvi Weinstock <aweinstock314@gmail.com>2015-07-29 12:19:39 -0400
commit9ba18850dd12d6d5f100bc93b59af51d6ff2a4f3 (patch)
tree525c0c03c62144a52e3d836cf329dd09a2e87f3d /components/script/textinput.rs
parentf86252a60bf9f4496fb010b5d1d3f9fc3648467f (diff)
downloadservo-9ba18850dd12d6d5f100bc93b59af51d6ff2a4f3.tar.gz
servo-9ba18850dd12d6d5f100bc93b59af51d6ff2a4f3.zip
Update rust-clipboard to the version with working set_contents.
Diffstat (limited to 'components/script/textinput.rs')
-rw-r--r--components/script/textinput.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs
index 16af930518f..9ce3a482a65 100644
--- a/components/script/textinput.rs
+++ b/components/script/textinput.rs
@@ -329,7 +329,6 @@ impl<T: ClipboardProvider> TextInput<T> {
},
Key::C if is_control_key(mods) => {
if let Some(text) = self.get_selection_text() {
- println!("get_selection_text(): {}", &text);
self.clipboard_provider.set_clipboard_contents(text);
}
KeyReaction::DispatchInput