mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 01:18:39 +00:00
Fix #1861 - AutoAdd Warning (column number is a boolean)
This commit is contained in:
parent
09a56ae03c
commit
4d643f2cba
2 changed files with 34 additions and 34 deletions
|
@ -271,7 +271,7 @@ class GtkUI(GtkPluginBase):
|
||||||
|
|
||||||
def create_columns(self, treeView):
|
def create_columns(self, treeView):
|
||||||
rendererToggle = gtk.CellRendererToggle()
|
rendererToggle = gtk.CellRendererToggle()
|
||||||
column = gtk.TreeViewColumn("On", rendererToggle, activatable=True, active=1)
|
column = gtk.TreeViewColumn("On", rendererToggle, activatable=1, active=1)
|
||||||
column.set_sort_column_id(1)
|
column.set_sort_column_id(1)
|
||||||
treeView.append_column(column)
|
treeView.append_column(column)
|
||||||
tt = gtk.Tooltip()
|
tt = gtk.Tooltip()
|
||||||
|
|
|
@ -42,7 +42,7 @@ from setuptools import setup
|
||||||
__plugin_name__ = "AutoAdd"
|
__plugin_name__ = "AutoAdd"
|
||||||
__author__ = "Chase Sterling"
|
__author__ = "Chase Sterling"
|
||||||
__author_email__ = "chase.sterling@gmail.com"
|
__author_email__ = "chase.sterling@gmail.com"
|
||||||
__version__ = "1.02"
|
__version__ = "1.03"
|
||||||
__url__ = "http://dev.deluge-torrent.org/wiki/Plugins/AutoAdd"
|
__url__ = "http://dev.deluge-torrent.org/wiki/Plugins/AutoAdd"
|
||||||
__license__ = "GPLv3"
|
__license__ = "GPLv3"
|
||||||
__description__ = "Monitors folders for .torrent files."
|
__description__ = "Monitors folders for .torrent files."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue