~ubuntu-branches/ubuntu/natty/exaile/natty

« back to all changes in this revision

Viewing changes to selected_pattern.patch

  • Committer: Bazaar Package Importer
  • Author(s): Nick Ellery
  • Date: 2008-11-04 18:33:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20081104183300-e4t9seztl35bdb24
Tags: 0.2.14-0ubuntu1
* New upstream release (LP: #280287)
* debian/control:
  - tighten dependency on python-gtk2 to (>= 2.10)
  - added python-sexy to recommends to add a clear button to filters
  - added python-gnome2-extras to recommends for lyrics, better tray icon,
    etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=== modified file 'xl/gui/editor.py'
 
2
--- xl/gui/editor.py    2008-04-11 23:18:22 +0000
 
3
+++ xl/gui/editor.py    2008-05-29 02:17:45 +0000
 
4
@@ -603,6 +603,8 @@
 
5
         dialog.add_buttons(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, \
 
6
             gtk.STOCK_OK, gtk.RESPONSE_OK)
 
7
         entry = gtk.Entry()
 
8
+        # Set the default text to the pattern currently selected
 
9
+        entry.set_text(self.tagsfrompath_cb.get_active_text())
 
10
         dialog.vbox.pack_start(entry, True, True)
 
11
         
 
12
         dialog.show_all()
 
13