diff options
author | Necoro <> | 2008-01-18 21:19:42 +0000 |
---|---|---|
committer | Necoro <> | 2008-01-18 21:19:42 +0000 |
commit | 6a9034fb7a161e441934969553ffff63e49348ee (patch) | |
tree | c128d3c23dc9d54dfaabc40e8fd4c35a815dbe92 /portato/gui/gtk/windows.py | |
parent | e49c33d6114ddc8051c349aa325872bd7840289b (diff) | |
download | portato-6a9034fb7a161e441934969553ffff63e49348ee.tar.gz portato-6a9034fb7a161e441934969553ffff63e49348ee.tar.bz2 portato-6a9034fb7a161e441934969553ffff63e49348ee.zip |
r664@Devoty: necoro | 2008-01-18 21:40:29 +0100
First support for 'delete on demand'
r665@Devoty: necoro | 2008-01-18 22:18:05 +0100
Finished the 'on demand removal'
Diffstat (limited to 'portato/gui/gtk/windows.py')
-rw-r--r-- | portato/gui/gtk/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 4d25312..3115ac1 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -1061,7 +1061,7 @@ class MainWindow (Window): def build_queue_list (self): """Builds the queue list.""" - store = gtk.TreeStore(str,str) + store = gtk.TreeStore(str,str,bool) self.queueList.set_model(store) |