diff src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java @ 42:7ac846a07ed4 tn5250

start tn5250 integration
author Carl Byington <carl@five-ten-sg.com>
date Wed, 11 Jun 2014 09:14:31 -0700
parents 0ce5cc452d02
children 80dcebe51af2
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java	Tue Jun 10 17:40:09 2014 -0700
+++ b/src/com/five_ten_sg/connectbot/service/TerminalKeyListener.java	Wed Jun 11 09:14:31 2014 -0700
@@ -472,7 +472,7 @@
                     return (handleShortcut(v, hwbuttonShortcut));
 
                 case KeyEvent.KEYCODE_VOLUME_UP:
-                    // check to see which shortcut the camera button triggers
+                    // check to see which shortcut the volume button triggers
                     hwbuttonShortcut = manager.prefs.getString(
                                            PreferenceConstants.VOLUP,
                                            PreferenceConstants.HWBUTTON_CTRL);
@@ -486,7 +486,7 @@
                     return (handleShortcut(v, hwbuttonShortcut));
 
                 case KeyEvent.KEYCODE_SEARCH:
-                    // check to see which shortcut the camera button triggers
+                    // check to see which shortcut the search button triggers
                     hwbuttonShortcut = manager.prefs.getString(
                                            PreferenceConstants.SEARCH,
                                            PreferenceConstants.HWBUTTON_ESC);
@@ -913,10 +913,6 @@
                     // copy selected area to clipboard
                     String copiedText = selectionArea.copyFrom(buffer);
                     clipboard.setText(copiedText);
-                    // XXX STOPSHIP
-//                  manager.notifyUser(manager.getString(
-//                          R.string.console_copy_done,
-//                          copiedText.length()));
                     selectingForCopy = false;
                     selectionArea.reset();
                 }