mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Bringed back self.notebook in DelugeGTK(was removed in [931]) as it is used by
plugins. NetworkGraph plugin is working again.
This commit is contained in:
parent
105703d630
commit
8dad5d9fd8
1 changed files with 5 additions and 2 deletions
|
@ -86,8 +86,11 @@ class DelugeGTK:
|
|||
self.window.connect("configure-event", self.window_configure_event)
|
||||
self.window.set_title(common.PROGRAM_NAME)
|
||||
self.window.set_icon_from_file(common.get_pixmap("deluge32.png"))
|
||||
self.wtree.get_widget("torrent_info").\
|
||||
connect("switch-page", self.notebook_switch_page)
|
||||
|
||||
# self.notebook is used by plugins
|
||||
self.notebook = self.wtree.get_widget("torrent_info")
|
||||
self.notebook.connect("switch-page", self.notebook_switch_page)
|
||||
|
||||
self.statusbar = self.wtree.get_widget("statusbar")
|
||||
|
||||
## Construct the Interface
|
||||
|
|
Loading…
Add table
Reference in a new issue