Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (445 - 447 of 2447)

Ticket Resolution Summary Owner Reporter
#1304 WorksForMe Context menu relocated after popup mathbr
Description

Right after the menu in the main window has been popped out it is relocated to the location of the mouse pointer. This makes quick menu interaction impossible. Same goes for drag-activation (button press to open menu, keep pressed and hover the menu item, release to activate.)

#1469 Invalid continual barrage of DNS lookups for socksv5 proxy gsgleason
Description

I use brguard's proxy service. I ran a packet capture to make sure no non-proxy connections were happening. I noticed that deluge continually requests lookups of the proxy hostname, over and over, non-stop. using ubuntu 10.10, x86_64 with ppa. deluge-gtk 1.3.1-2~maverick~ppa1

I was using the official ubuntu package when I noticed this. I upgraded using your ppa, but same issue.

#3002 Fixed Convert Deluge Plugins to GtkBuilder DjLegolas Calum
Description

The plugins needs converting from libglade to Gtk Builder. It is a fairly simply process with the following steps:

Glade file conversion

  1. Open <filename>.glade file in Glade 3.8.1 UI designer.
  2. Choose Edit | Preferences
  3. Change Libglade to GtkBuilder and 2.24 toolkit.
  4. Then File | Save As... and change filename extension to .ui. (e.g. <filename>.ui)

PyGtk code conversion

  • Remove any gtk.glade imports
  • Replace glade.XML with Builder instance and add_from_file method, for example:
-      self.glade = gtk.glade.XML(get_resource('<filename>.glade'))
+      self.builder = gtk.Builder()
+      self.builder.add_from_file(get_resource('<filename>.ui'))
  • Ensure .glade files are renamed to .ui equivalents.
  • Replace glade.get_widget with builder.get_object
  • Replace glade.signal_autoconnect with builder.connect_signals
  • If the naming of handler methods match the signals it is possible to use builder.connect_signals(self) instead of specifying the mapping.

Also see: https://developer.gnome.org/gtk2/stable/gtk-migrating-GtkBuilder.html

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.