Some of my updates to the UI. Re-added the scrolled window to the
details pane, but glade doesn't seem to load it properly. Added word wrapping for a few of the fields. Also added Torrent to the menubar and it uses the torrent_menu from the right-click pop-up menu.
This commit is contained in:
parent
cac850939c
commit
edd017b785
File diff suppressed because it is too large
Load Diff
|
@ -77,6 +77,7 @@ class DelugeGTK:
|
|||
self.notebook = self.wtree.get_widget("torrent_info")
|
||||
self.statusbar = self.wtree.get_widget("statusbar")
|
||||
|
||||
|
||||
## Construct the Interface
|
||||
try:
|
||||
self.build_tray_icon()
|
||||
|
@ -93,6 +94,9 @@ class DelugeGTK:
|
|||
self.build_summary_tab()
|
||||
self.build_file_tab()
|
||||
self.build_peer_tab()
|
||||
|
||||
# Set the Torrent menu bar sub-menu to the same as the right-click Torrent pop-up menu
|
||||
self.wtree.get_widget("menu_torrent").set_submenu(self.torrent_menu)
|
||||
|
||||
self.connect_signals()
|
||||
|
||||
|
|
Loading…
Reference in New Issue