johnturek / advanced-find

Automatically exported from code.google.com/p/advanced-find
0 stars 0 forks source link

find_result.py line 215 #74

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Warnings in console:

(gedit:9412): Gtk-CRITICAL **: gtk_list_store_set_column_types: assertion 
`priv->columns_dirty == 0' failed
Traceback (most recent call last):
  File "/usr/lib/gedit/plugins/advancedfind/find_result.py", line 215, in on_findResultTreeview_cursor_changed_action
    model, it = object.get_selection().get_selected()
AttributeError: 'NoneType' object has no attribute 'get_selected'

BugFix:

find_result.py:215

                ...def on_findResultTreeview_cursor_changed_action(self, object):
        selection = object.get_selection()
        if selection:
            it = selection.get_selected()
            if not it:
                return

                try...

Original issue reported on code.google.com by a.jans...@gmail.com on 30 Aug 2012 at 9:52

GoogleCodeExporter commented 9 years ago
I will fix this at next release.

Original comment by swatch.c...@gmail.com on 28 Oct 2012 at 12:08

GoogleCodeExporter commented 9 years ago
Fixed at v3.5.1.

Original comment by swatch.c...@gmail.com on 18 Nov 2012 at 1:26