Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/Shell.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-09-30 23:25:35 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-09-30 23:25:35 (GMT)
commitf0afda2e306ee50e5a486a9e804fefa43e84c8e3 (patch)
tree95ca5ff87bbd57f30bace732a8c32d02b96c3323 /shell/view/Shell.py
parent1be27d4b4aac890d3db22223237fdbdebc83883c (diff)
"Moved" the new console work on a branch.
Diffstat (limited to 'shell/view/Shell.py')
-rw-r--r--shell/view/Shell.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/shell/view/Shell.py b/shell/view/Shell.py
index e816308..9d14a2f 100644
--- a/shell/view/Shell.py
+++ b/shell/view/Shell.py
@@ -36,7 +36,6 @@ from view.frame.frame import Frame
from view.keyhandler import KeyHandler
from view.home.HomeWindow import HomeWindow
from model.shellmodel import ShellModel
-from console import Console
class Shell(gobject.GObject):
def __init__(self, model):
@@ -65,8 +64,6 @@ class Shell(gobject.GObject):
home_model.connect('pending-activity-changed',
self._pending_activity_changed_cb)
- self._console = Console(model)
-
gobject.idle_add(self._start_journal_idle)
def _start_journal_idle(self):
@@ -168,12 +165,6 @@ class Shell(gobject.GObject):
return host
return None
- def toggle_console_visibility(self):
- if self._console.props.visible:
- self._console.hide()
- else:
- self._console.show()
-
def toggle_chat_visibility(self):
act = self.get_current_activity()
if not act: