aboutsummaryrefslogtreecommitdiffstats
path: root/src/org
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2009-06-03 03:50:18 +0000
committerKenny Root <kenny@the-b.org>2009-06-03 03:50:18 +0000
commita4d00208260ffc0c7af8d32006b74cf0138ab89c (patch)
treeb993255ebe686075b6d71e63a264dc91de848f53 /src/org
parent85e8cd9462ee555f895b368acdd62b78a6aa496d (diff)
downloadconnectbot-a4d00208260ffc0c7af8d32006b74cf0138ab89c.tar.gz
connectbot-a4d00208260ffc0c7af8d32006b74cf0138ab89c.tar.bz2
connectbot-a4d00208260ffc0c7af8d32006b74cf0138ab89c.zip
Revert problematic screen lock protection until we find a better solution
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@266 df292f66-193f-0410-a5fc-6d59da041ff2
Diffstat (limited to 'src/org')
-rw-r--r--src/org/connectbot/ConsoleActivity.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/org/connectbot/ConsoleActivity.java b/src/org/connectbot/ConsoleActivity.java
index a6c2199..a88c6d0 100644
--- a/src/org/connectbot/ConsoleActivity.java
+++ b/src/org/connectbot/ConsoleActivity.java
@@ -719,28 +719,6 @@ public class ConsoleActivity extends Activity {
}
@Override
- public void onPause() {
- super.onPause();
-
- /* Make sure our current TerminalView doesn't send a
- * notification to the user about the screen size.
- */
- View view = findCurrentView(R.id.console_flip);
- if (view instanceof TerminalView)
- ((TerminalView) view).setNotifications(false);
- }
-
- @Override
- public void onResume() {
- super.onResume();
-
- // Enable notifications for the current TerminalView.
- View view = findCurrentView(R.id.console_flip);
- if (view instanceof TerminalView)
- ((TerminalView) view).setNotifications(true);
- }
-
- @Override
public void onStop() {
super.onStop();