"Moved" the new console work on a branch.

This commit is contained in:
Marco Pesenti Gritti
2007-10-01 01:25:35 +02:00
parent 1be27d4b4a
commit f0afda2e30
5 changed files with 2 additions and 176 deletions
-9
View File
@@ -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: