Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-04-29 20:50:07 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-04-29 20:50:07 (GMT)
commit52dbb055ec9f9e42da9c312b27b766481e178ba7 (patch)
treecf5fe4be49c82d13a884fa22287cfff6e04d1337
parent50f46436d7b1be3a1e91bda98603c64fd844149d (diff)
disabling become root button
-rwxr-xr-x[-rw-r--r--]terminal.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/terminal.py b/terminal.py
index a0f97ba..63605b3 100644..100755
--- a/terminal.py
+++ b/terminal.py
@@ -86,17 +86,17 @@ class TerminalActivity(activity.Activity):
tab_toolbar_button.show()
# Add a button that will be used to become root easily.
- root_button = ToolButton('activity-become-root')
- root_button.set_tooltip(_('Become root'))
- root_button.connect('clicked', self.__become_root_cb)
- toolbar_box.toolbar.insert(root_button, -1)
- root_button.show()
-
- separator = gtk.SeparatorToolItem()
- separator.props.draw = False
- separator.set_expand(True)
- toolbar_box.toolbar.insert(separator, -1)
- separator.show()
+ #root_button = ToolButton('activity-become-root')
+ #root_button.set_tooltip(_('Become root'))
+ #root_button.connect('clicked', self.__become_root_cb)
+ #toolbar_box.toolbar.insert(root_button, -1)
+ #root_button.show()
+
+ #separator = gtk.SeparatorToolItem()
+ #separator.props.draw = False
+ #separator.set_expand(True)
+ #toolbar_box.toolbar.insert(separator, -1)
+ #separator.show()
stop_button = StopButton(self)
stop_button.props.accelerator = '<Ctrl><Shift>Q'